2004-07-08 02:30:22 +04:00
|
|
|
/* $NetBSD: audio.c,v 1.183 2004/07/07 22:30:22 mycroft Exp $ */
|
1995-02-21 04:35:58 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1991-1993 Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 Computer Systems
|
|
|
|
* Engineering Group at Lawrence Berkeley Laboratory.
|
|
|
|
* 4. Neither the name of the University nor of the Laboratory may be used
|
|
|
|
* to endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a (partially) SunOS-compatible /dev/audio driver for NetBSD.
|
2002-03-23 20:17:10 +03:00
|
|
|
*
|
1995-02-21 04:35:58 +03:00
|
|
|
* This code tries to do something half-way sensible with
|
|
|
|
* half-duplex hardware, such as with the SoundBlaster hardware. With
|
|
|
|
* half-duplex hardware allowing O_RDWR access doesn't really make
|
|
|
|
* sense. However, closing and opening the device to "turn around the
|
|
|
|
* line" is relatively expensive and costs a card reset (which can
|
|
|
|
* take some time, at least for the SoundBlaster hardware). Instead
|
|
|
|
* we allow O_RDWR access, and provide an ioctl to set the "mode",
|
|
|
|
* i.e. playing or recording.
|
|
|
|
*
|
|
|
|
* If you write to a half-duplex device in record mode, the data is
|
|
|
|
* tossed. If you read from the device in play mode, you get silence
|
|
|
|
* filled buffers at the rate at which samples are naturally
|
|
|
|
* generated.
|
|
|
|
*
|
|
|
|
* If you try to set both play and record mode on a half-duplex
|
|
|
|
* device, playing takes precedence.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Todo:
|
2002-03-23 20:17:10 +03:00
|
|
|
* - Add softaudio() isr processing for wakeup, poll, signals,
|
1997-08-11 05:38:12 +04:00
|
|
|
* and silence fill.
|
1995-02-21 04:35:58 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-13 08:32:49 +03:00
|
|
|
#include <sys/cdefs.h>
|
2004-07-08 02:30:22 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.183 2004/07/07 22:30:22 mycroft Exp $");
|
2001-11-13 08:32:49 +03:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
#include "audio.h"
|
|
|
|
#if NAUDIO > 0
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/fcntl.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/select.h>
|
1996-09-07 16:40:22 +04:00
|
|
|
#include <sys/poll.h>
|
1995-02-21 04:35:58 +03:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/syslog.h>
|
1995-07-07 05:52:30 +04:00
|
|
|
#include <sys/kernel.h>
|
1996-03-14 22:05:07 +03:00
|
|
|
#include <sys/signalvar.h>
|
1996-03-31 01:51:23 +03:00
|
|
|
#include <sys/conf.h>
|
1995-02-21 04:35:58 +03:00
|
|
|
#include <sys/audioio.h>
|
1997-08-01 02:33:08 +04:00
|
|
|
#include <sys/device.h>
|
1996-05-13 05:01:55 +04:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
#include <dev/audio_if.h>
|
1997-04-30 01:01:33 +04:00
|
|
|
#include <dev/audiovar.h>
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-05-07 22:51:31 +04:00
|
|
|
#include <machine/endian.h>
|
|
|
|
|
1995-07-07 05:52:30 +04:00
|
|
|
#ifdef AUDIO_DEBUG
|
1997-07-27 05:16:32 +04:00
|
|
|
#define DPRINTF(x) if (audiodebug) printf x
|
1998-04-28 13:07:12 +04:00
|
|
|
#define DPRINTFN(n,x) if (audiodebug>(n)) printf x
|
2002-03-07 17:37:02 +03:00
|
|
|
int audiodebug = AUDIO_DEBUG;
|
1995-02-21 04:35:58 +03:00
|
|
|
#else
|
|
|
|
#define DPRINTF(x)
|
1998-04-28 13:07:12 +04:00
|
|
|
#define DPRINTFN(n,x)
|
1995-02-21 04:35:58 +03:00
|
|
|
#endif
|
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
#define ROUNDSIZE(x) x &= -16 /* round to nice boundary */
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-05-28 03:24:56 +04:00
|
|
|
int audio_blk_ms = AUDIO_BLK_MS;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
2001-10-03 03:31:54 +04:00
|
|
|
int audiosetinfo(struct audio_softc *, struct audio_info *);
|
|
|
|
int audiogetinfo(struct audio_softc *, struct audio_info *);
|
|
|
|
|
2003-06-30 02:28:00 +04:00
|
|
|
int audio_open(dev_t, struct audio_softc *, int, int, struct proc *);
|
|
|
|
int audio_close(struct audio_softc *, int, int, struct proc *);
|
2001-10-03 03:31:54 +04:00
|
|
|
int audio_read(struct audio_softc *, struct uio *, int);
|
|
|
|
int audio_write(struct audio_softc *, struct uio *, int);
|
2003-06-30 02:28:00 +04:00
|
|
|
int audio_ioctl(struct audio_softc *, u_long, caddr_t, int, struct proc *);
|
|
|
|
int audio_poll(struct audio_softc *, int, struct proc *);
|
2002-10-23 13:10:23 +04:00
|
|
|
int audio_kqfilter(struct audio_softc *, struct knote *);
|
2001-10-03 03:31:54 +04:00
|
|
|
paddr_t audio_mmap(struct audio_softc *, off_t, int);
|
|
|
|
|
2003-06-30 02:28:00 +04:00
|
|
|
int mixer_open(dev_t, struct audio_softc *, int, int, struct proc *);
|
|
|
|
int mixer_close(struct audio_softc *, int, int, struct proc *);
|
|
|
|
int mixer_ioctl(struct audio_softc *, u_long, caddr_t, int, struct proc *);
|
|
|
|
static void mixer_remove(struct audio_softc *, struct proc *p);
|
2001-10-03 03:31:54 +04:00
|
|
|
static void mixer_signal(struct audio_softc *);
|
2002-03-23 20:17:10 +03:00
|
|
|
|
2001-10-03 03:31:54 +04:00
|
|
|
void audio_init_record(struct audio_softc *);
|
|
|
|
void audio_init_play(struct audio_softc *);
|
|
|
|
int audiostartr(struct audio_softc *);
|
|
|
|
int audiostartp(struct audio_softc *);
|
|
|
|
void audio_rint(void *);
|
|
|
|
void audio_pint(void *);
|
|
|
|
int audio_check_params(struct audio_params *);
|
|
|
|
|
|
|
|
void audio_calc_blksize(struct audio_softc *, int);
|
|
|
|
void audio_fill_silence(struct audio_params *, u_char *, int);
|
|
|
|
int audio_silence_copyout(struct audio_softc *, int, struct uio *);
|
|
|
|
|
2003-10-02 11:15:20 +04:00
|
|
|
void audio_init_ringbuffer(struct audio_softc *, struct audio_ringbuffer *);
|
2001-10-03 03:31:54 +04:00
|
|
|
int audio_initbufs(struct audio_softc *);
|
|
|
|
void audio_calcwater(struct audio_softc *);
|
|
|
|
static __inline int audio_sleep_timo(int *, char *, int);
|
|
|
|
static __inline int audio_sleep(int *, char *);
|
|
|
|
static __inline void audio_wakeup(int *);
|
|
|
|
int audio_drain(struct audio_softc *);
|
|
|
|
void audio_clear(struct audio_softc *);
|
2002-03-23 20:17:10 +03:00
|
|
|
static __inline void audio_pint_silence
|
2001-10-03 03:31:54 +04:00
|
|
|
(struct audio_softc *, struct audio_ringbuffer *, u_char *, int);
|
1997-07-27 05:16:32 +04:00
|
|
|
|
2002-03-23 20:17:10 +03:00
|
|
|
int audio_alloc_ring
|
2001-10-03 03:31:54 +04:00
|
|
|
(struct audio_softc *, struct audio_ringbuffer *, int, size_t);
|
|
|
|
void audio_free_ring(struct audio_softc *, struct audio_ringbuffer *);
|
2003-10-02 11:15:20 +04:00
|
|
|
int audio_set_defaults(struct audio_softc *, u_int);
|
1996-03-07 18:00:07 +03:00
|
|
|
|
2001-10-03 03:31:54 +04:00
|
|
|
int audioprobe(struct device *, struct cfdata *, void *);
|
|
|
|
void audioattach(struct device *, struct device *, void *);
|
|
|
|
int audiodetach(struct device *, int);
|
|
|
|
int audioactivate(struct device *, enum devact);
|
1997-08-20 03:49:33 +04:00
|
|
|
|
1997-10-19 11:41:33 +04:00
|
|
|
struct portname {
|
2003-03-31 22:47:58 +04:00
|
|
|
const char *name;
|
2002-03-23 20:17:10 +03:00
|
|
|
int mask;
|
1997-10-19 11:41:33 +04:00
|
|
|
};
|
2003-03-31 22:47:58 +04:00
|
|
|
static const struct portname itable[] = {
|
1997-10-19 11:41:33 +04:00
|
|
|
{ AudioNmicrophone, AUDIO_MICROPHONE },
|
|
|
|
{ AudioNline, AUDIO_LINE_IN },
|
|
|
|
{ AudioNcd, AUDIO_CD },
|
|
|
|
{ 0 }
|
|
|
|
};
|
2003-03-31 22:47:58 +04:00
|
|
|
static const struct portname otable[] = {
|
1997-10-19 11:41:33 +04:00
|
|
|
{ AudioNspeaker, AUDIO_SPEAKER },
|
|
|
|
{ AudioNheadphone, AUDIO_HEADPHONE },
|
|
|
|
{ AudioNline, AUDIO_LINE_OUT },
|
|
|
|
{ 0 }
|
|
|
|
};
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
void au_setup_ports(struct audio_softc *, struct au_mixer_ports *,
|
|
|
|
mixer_devinfo_t *, const struct portname *);
|
2002-03-23 20:17:10 +03:00
|
|
|
int au_set_gain(struct audio_softc *, struct au_mixer_ports *,
|
2001-10-03 03:31:54 +04:00
|
|
|
int, int);
|
|
|
|
void au_get_gain(struct audio_softc *, struct au_mixer_ports *,
|
|
|
|
u_int *, u_char *);
|
|
|
|
int au_set_port(struct audio_softc *, struct au_mixer_ports *,
|
|
|
|
u_int);
|
|
|
|
int au_get_port(struct audio_softc *, struct au_mixer_ports *);
|
|
|
|
int au_get_lr_value(struct audio_softc *, mixer_ctrl_t *,
|
|
|
|
int *, int *r);
|
|
|
|
int au_set_lr_value(struct audio_softc *, mixer_ctrl_t *,
|
|
|
|
int, int);
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
int au_portof(struct audio_softc *, char *, int);
|
1997-10-19 11:41:33 +04:00
|
|
|
|
2002-09-06 17:18:43 +04:00
|
|
|
dev_type_open(audioopen);
|
|
|
|
dev_type_close(audioclose);
|
|
|
|
dev_type_read(audioread);
|
|
|
|
dev_type_write(audiowrite);
|
|
|
|
dev_type_ioctl(audioioctl);
|
|
|
|
dev_type_poll(audiopoll);
|
|
|
|
dev_type_mmap(audiommap);
|
2002-10-23 13:10:23 +04:00
|
|
|
dev_type_kqfilter(audiokqfilter);
|
2002-09-06 17:18:43 +04:00
|
|
|
|
|
|
|
const struct cdevsw audio_cdevsw = {
|
|
|
|
audioopen, audioclose, audioread, audiowrite, audioioctl,
|
2002-10-23 13:10:23 +04:00
|
|
|
nostop, notty, audiopoll, audiommap, audiokqfilter,
|
2002-09-06 17:18:43 +04:00
|
|
|
};
|
1997-10-19 11:41:33 +04:00
|
|
|
|
2003-04-06 22:20:07 +04:00
|
|
|
/* The default audio mode: 8 kHz mono mu-law */
|
2003-10-02 11:15:20 +04:00
|
|
|
const struct audio_params audio_default = {
|
|
|
|
.sample_rate = 8000,
|
|
|
|
.encoding = AUDIO_ENCODING_ULAW,
|
|
|
|
.precision = 8,
|
|
|
|
.channels = 1,
|
|
|
|
.sw_code = 0,
|
|
|
|
.factor = 1,
|
|
|
|
.factor_denom = 1
|
|
|
|
};
|
1997-04-30 01:01:33 +04:00
|
|
|
|
2002-10-01 01:17:57 +04:00
|
|
|
CFATTACH_DECL(audio, sizeof(struct audio_softc),
|
2002-10-02 20:33:28 +04:00
|
|
|
audioprobe, audioattach, audiodetach, audioactivate);
|
1997-07-27 05:16:32 +04:00
|
|
|
|
1998-01-12 11:44:08 +03:00
|
|
|
extern struct cfdriver audio_cd;
|
1997-07-27 05:16:32 +04:00
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audioprobe(struct device *parent, struct cfdata *match, void *aux)
|
1997-07-27 05:16:32 +04:00
|
|
|
{
|
1997-08-20 03:49:33 +04:00
|
|
|
struct audio_attach_args *sa = aux;
|
1997-07-27 05:16:32 +04:00
|
|
|
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTF(("audioprobe: type=%d sa=%p hw=%p\n",
|
|
|
|
sa->type, sa, sa->hwif));
|
1997-10-29 05:00:20 +03:00
|
|
|
return (sa->type == AUDIODEV_TYPE_AUDIO) ? 1 : 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
1997-08-20 03:49:33 +04:00
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
audioattach(struct device *parent, struct device *self, void *aux)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1997-08-20 03:49:33 +04:00
|
|
|
struct audio_softc *sc = (void *)self;
|
|
|
|
struct audio_attach_args *sa = aux;
|
1997-10-29 05:00:20 +03:00
|
|
|
struct audio_hw_if *hwp = sa->hwif;
|
1997-08-20 03:49:33 +04:00
|
|
|
void *hdlp = sa->hdl;
|
1997-07-27 05:16:32 +04:00
|
|
|
int error;
|
1997-10-19 11:41:33 +04:00
|
|
|
mixer_devinfo_t mi;
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
int iclass, mclass, oclass, props;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (hwp == 0 ||
|
|
|
|
hwp->open == 0 ||
|
1995-02-21 04:35:58 +03:00
|
|
|
hwp->close == 0 ||
|
1997-04-30 01:01:33 +04:00
|
|
|
hwp->query_encoding == 0 ||
|
1997-05-10 02:16:27 +04:00
|
|
|
hwp->set_params == 0 ||
|
1998-08-10 00:28:07 +04:00
|
|
|
(hwp->start_output == 0 && hwp->trigger_output == 0) ||
|
|
|
|
(hwp->start_input == 0 && hwp->trigger_input == 0) ||
|
1995-02-21 04:35:58 +03:00
|
|
|
hwp->halt_output == 0 ||
|
|
|
|
hwp->halt_input == 0 ||
|
|
|
|
hwp->getdev == 0 ||
|
|
|
|
hwp->set_port == 0 ||
|
|
|
|
hwp->get_port == 0 ||
|
1997-08-01 02:33:08 +04:00
|
|
|
hwp->query_devinfo == 0 ||
|
|
|
|
hwp->get_props == 0) {
|
1999-09-23 15:53:13 +04:00
|
|
|
printf(": missing method\n");
|
1997-08-20 03:49:33 +04:00
|
|
|
sc->hw_if = 0;
|
|
|
|
return;
|
2002-03-23 20:17:10 +03:00
|
|
|
}
|
1997-07-27 05:16:32 +04:00
|
|
|
#endif
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1999-12-15 15:09:34 +03:00
|
|
|
props = hwp->get_props(hdlp);
|
|
|
|
|
|
|
|
if (props & AUDIO_PROP_FULLDUPLEX)
|
2002-01-19 00:59:41 +03:00
|
|
|
printf(": full duplex");
|
1999-02-19 20:09:16 +03:00
|
|
|
else
|
2002-01-19 00:59:41 +03:00
|
|
|
printf(": half duplex");
|
1999-12-15 15:09:34 +03:00
|
|
|
|
|
|
|
if (props & AUDIO_PROP_MMAP)
|
2002-01-19 00:59:41 +03:00
|
|
|
printf(", mmap");
|
1999-12-15 15:09:34 +03:00
|
|
|
if (props & AUDIO_PROP_INDEPENDENT)
|
2002-01-19 00:59:41 +03:00
|
|
|
printf(", independent");
|
1999-12-15 15:09:34 +03:00
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
sc->hw_if = hwp;
|
|
|
|
sc->hw_hdl = hdlp;
|
1997-08-20 03:49:33 +04:00
|
|
|
sc->sc_dev = parent;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1999-02-17 05:37:38 +03:00
|
|
|
error = audio_alloc_ring(sc, &sc->sc_pr, AUMODE_PLAY, AU_RING_SIZE);
|
1997-08-20 03:49:33 +04:00
|
|
|
if (error) {
|
|
|
|
sc->hw_if = 0;
|
1998-05-15 19:45:58 +04:00
|
|
|
printf("audio: could not allocate play buffer\n");
|
1997-08-20 03:49:33 +04:00
|
|
|
return;
|
|
|
|
}
|
1999-02-17 05:37:38 +03:00
|
|
|
error = audio_alloc_ring(sc, &sc->sc_rr, AUMODE_RECORD, AU_RING_SIZE);
|
1997-07-27 05:16:32 +04:00
|
|
|
if (error) {
|
|
|
|
audio_free_ring(sc, &sc->sc_pr);
|
1997-08-20 03:49:33 +04:00
|
|
|
sc->hw_if = 0;
|
1998-05-15 19:45:58 +04:00
|
|
|
printf("audio: could not allocate record buffer\n");
|
1997-08-20 03:49:33 +04:00
|
|
|
return;
|
1997-07-27 05:16:32 +04:00
|
|
|
}
|
2002-03-07 17:37:02 +03:00
|
|
|
|
|
|
|
sc->sc_pconvbuffer = malloc(AU_RING_SIZE, M_DEVBUF, M_WAITOK);
|
|
|
|
sc->sc_pconvbuffer_size = AU_RING_SIZE;
|
|
|
|
sc->sc_rconvbuffer = malloc(AU_RING_SIZE, M_DEVBUF, M_WAITOK);
|
|
|
|
sc->sc_rconvbuffer_size = AU_RING_SIZE;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
2003-10-02 11:15:20 +04:00
|
|
|
if (audio_set_defaults(sc, 0))
|
|
|
|
panic("audioattach: audio_set_defaults failed");
|
|
|
|
|
2002-03-07 17:37:02 +03:00
|
|
|
sc->sc_input_fragment_length = 0;
|
1997-10-19 11:41:33 +04:00
|
|
|
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
iclass = mclass = oclass = -1;
|
1997-10-19 11:41:33 +04:00
|
|
|
sc->sc_inports.index = -1;
|
2002-06-23 05:36:07 +04:00
|
|
|
sc->sc_inports.master = -1;
|
1997-10-19 11:41:33 +04:00
|
|
|
sc->sc_inports.nports = 0;
|
|
|
|
sc->sc_inports.isenum = 0;
|
|
|
|
sc->sc_inports.allports = 0;
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
sc->sc_inports.isdual = 0;
|
|
|
|
sc->sc_inports.mixerout = -1;
|
|
|
|
sc->sc_inports.cur_port = -1;
|
1997-10-19 11:41:33 +04:00
|
|
|
sc->sc_outports.index = -1;
|
2002-06-23 05:36:07 +04:00
|
|
|
sc->sc_outports.master = -1;
|
1997-10-19 11:41:33 +04:00
|
|
|
sc->sc_outports.nports = 0;
|
|
|
|
sc->sc_outports.isenum = 0;
|
|
|
|
sc->sc_outports.allports = 0;
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
sc->sc_outports.isdual = 0;
|
|
|
|
sc->sc_outports.mixerout = -1;
|
|
|
|
sc->sc_outports.cur_port = -1;
|
1997-10-19 11:41:33 +04:00
|
|
|
sc->sc_monitor_port = -1;
|
|
|
|
for(mi.index = 0; ; mi.index++) {
|
|
|
|
if (hwp->query_devinfo(hdlp, &mi) != 0)
|
|
|
|
break;
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
if (mi.type == AUDIO_MIXER_CLASS) {
|
|
|
|
if (strcmp(mi.label.name, AudioCrecord) == 0)
|
|
|
|
iclass = mi.mixer_class;
|
|
|
|
if (strcmp(mi.label.name, AudioCmonitor) == 0)
|
|
|
|
mclass = mi.mixer_class;
|
|
|
|
if (strcmp(mi.label.name, AudioCoutputs) == 0)
|
|
|
|
oclass = mi.mixer_class;
|
|
|
|
}
|
1997-10-19 11:41:33 +04:00
|
|
|
}
|
|
|
|
for(mi.index = 0; ; mi.index++) {
|
|
|
|
if (hwp->query_devinfo(hdlp, &mi) != 0)
|
|
|
|
break;
|
1998-11-25 16:44:13 +03:00
|
|
|
if (mi.type == AUDIO_MIXER_CLASS)
|
|
|
|
continue;
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
if (mi.mixer_class == iclass) {
|
|
|
|
if (strcmp(mi.label.name, AudioNmaster) == 0)
|
|
|
|
sc->sc_inports.master = mi.index;
|
|
|
|
#if 1 /* Deprecated. Use AudioNmaster. */
|
|
|
|
if (strcmp(mi.label.name, AudioNrecord) == 0)
|
|
|
|
sc->sc_inports.master = mi.index;
|
|
|
|
if (strcmp(mi.label.name, AudioNvolume) == 0)
|
|
|
|
sc->sc_inports.master = mi.index;
|
|
|
|
#endif
|
|
|
|
if (strcmp(mi.label.name, AudioNsource) == 0) {
|
|
|
|
if (mi.type == AUDIO_MIXER_ENUM) {
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < mi.un.e.num_mem; i++)
|
|
|
|
if (strcmp(mi.un.e.member[i].label.name,
|
|
|
|
AudioNmixerout) == 0)
|
|
|
|
sc->sc_inports.mixerout =
|
|
|
|
mi.un.e.member[i].ord;
|
|
|
|
}
|
|
|
|
au_setup_ports(sc, &sc->sc_inports, &mi,
|
|
|
|
itable);
|
|
|
|
}
|
|
|
|
} else if (mi.mixer_class == mclass) {
|
|
|
|
if (strcmp(mi.label.name, AudioNmonitor) == 0)
|
|
|
|
sc->sc_monitor_port = mi.index;
|
|
|
|
} else if (mi.mixer_class == oclass) {
|
|
|
|
if (strcmp(mi.label.name, AudioNmaster) == 0)
|
|
|
|
sc->sc_outports.master = mi.index;
|
|
|
|
if (strcmp(mi.label.name, AudioNselect) == 0)
|
|
|
|
au_setup_ports(sc, &sc->sc_outports, &mi,
|
|
|
|
otable);
|
|
|
|
}
|
1997-10-19 11:41:33 +04:00
|
|
|
}
|
2000-05-01 21:10:40 +04:00
|
|
|
DPRINTF(("audio_attach: inputs ports=0x%x, input master=%d, "
|
|
|
|
"output ports=0x%x, output master=%d\n",
|
|
|
|
sc->sc_inports.allports, sc->sc_inports.master,
|
|
|
|
sc->sc_outports.allports, sc->sc_outports.master));
|
1997-10-19 11:41:33 +04:00
|
|
|
}
|
|
|
|
|
1999-09-09 14:24:39 +04:00
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audioactivate(struct device *self, enum devact act)
|
1999-09-09 14:24:39 +04:00
|
|
|
{
|
|
|
|
struct audio_softc *sc = (struct audio_softc *)self;
|
|
|
|
|
|
|
|
switch (act) {
|
|
|
|
case DVACT_ACTIVATE:
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
|
|
|
|
case DVACT_DEACTIVATE:
|
|
|
|
sc->sc_dying = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audiodetach(struct device *self, int flags)
|
1999-09-09 14:24:39 +04:00
|
|
|
{
|
|
|
|
struct audio_softc *sc = (struct audio_softc *)self;
|
|
|
|
int maj, mn;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
DPRINTF(("audio_detach: sc=%p flags=%d\n", sc, flags));
|
|
|
|
|
|
|
|
sc->sc_dying = 1;
|
|
|
|
|
|
|
|
wakeup(&sc->sc_wchan);
|
|
|
|
wakeup(&sc->sc_rchan);
|
|
|
|
s = splaudio();
|
|
|
|
if (--sc->sc_refcnt >= 0) {
|
|
|
|
if (tsleep(&sc->sc_refcnt, PZERO, "auddet", hz * 120))
|
|
|
|
printf("audiodetach: %s didn't detach\n",
|
|
|
|
sc->dev.dv_xname);
|
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
/* free resources */
|
|
|
|
audio_free_ring(sc, &sc->sc_pr);
|
|
|
|
audio_free_ring(sc, &sc->sc_rr);
|
2002-03-07 17:37:02 +03:00
|
|
|
free(sc->sc_pconvbuffer, M_DEVBUF);
|
|
|
|
free(sc->sc_rconvbuffer, M_DEVBUF);
|
1999-09-09 14:24:39 +04:00
|
|
|
|
|
|
|
/* locate the major number */
|
2002-09-06 17:18:43 +04:00
|
|
|
maj = cdevsw_lookup_major(&audio_cdevsw);
|
1999-09-09 14:24:39 +04:00
|
|
|
|
|
|
|
/* Nuke the vnodes for any open instances (calls close). */
|
|
|
|
mn = self->dv_unit;
|
1999-11-09 19:50:47 +03:00
|
|
|
vdevgone(maj, mn | SOUND_DEVICE, mn | SOUND_DEVICE, VCHR);
|
|
|
|
vdevgone(maj, mn | AUDIO_DEVICE, mn | AUDIO_DEVICE, VCHR);
|
|
|
|
vdevgone(maj, mn | AUDIOCTL_DEVICE, mn | AUDIOCTL_DEVICE, VCHR);
|
|
|
|
vdevgone(maj, mn | MIXER_DEVICE, mn | MIXER_DEVICE, VCHR);
|
1999-09-09 14:24:39 +04:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1997-10-19 11:41:33 +04:00
|
|
|
int
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
au_portof(struct audio_softc *sc, char *name, int class)
|
1997-10-19 11:41:33 +04:00
|
|
|
{
|
|
|
|
mixer_devinfo_t mi;
|
|
|
|
|
2002-03-23 20:17:10 +03:00
|
|
|
for(mi.index = 0;
|
1997-10-19 11:41:33 +04:00
|
|
|
sc->hw_if->query_devinfo(sc->hw_hdl, &mi) == 0;
|
|
|
|
mi.index++)
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
if (mi.mixer_class == class && strcmp(mi.label.name, name) == 0)
|
1997-10-19 11:41:33 +04:00
|
|
|
return mi.index;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
au_setup_ports(struct audio_softc *sc, struct au_mixer_ports *ports,
|
|
|
|
mixer_devinfo_t *mi, const struct portname *tbl)
|
1997-10-19 11:41:33 +04:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
ports->index = mi->index;
|
1997-10-19 11:41:33 +04:00
|
|
|
if (mi->type == AUDIO_MIXER_ENUM) {
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
ports->isenum = 1;
|
|
|
|
for(i = 0; tbl[i].name; i++)
|
|
|
|
for(j = 0; j < mi->un.e.num_mem; j++)
|
|
|
|
if (strcmp(mi->un.e.member[j].label.name,
|
|
|
|
tbl[i].name) == 0) {
|
|
|
|
ports->allports |= tbl[i].mask;
|
|
|
|
ports->aumask[ports->nports] = tbl[i].mask;
|
|
|
|
ports->misel[ports->nports] =
|
|
|
|
mi->un.e.member[j].ord;
|
|
|
|
ports->miport[ports->nports] =
|
|
|
|
au_portof(sc, mi->un.e.member[j].label.name,
|
|
|
|
mi->mixer_class);
|
|
|
|
if (ports->mixerout != -1 &&
|
|
|
|
ports->miport[ports->nports++] != -1)
|
|
|
|
ports->isdual = 1;
|
|
|
|
}
|
1997-10-19 11:41:33 +04:00
|
|
|
} else if (mi->type == AUDIO_MIXER_SET) {
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
for(i = 0; tbl[i].name; i++)
|
|
|
|
for(j = 0; j < mi->un.s.num_mem; j++)
|
|
|
|
if (strcmp(mi->un.s.member[j].label.name,
|
|
|
|
tbl[i].name) == 0) {
|
|
|
|
ports->allports |= tbl[i].mask;
|
|
|
|
ports->aumask[ports->nports] = tbl[i].mask;
|
|
|
|
ports->misel[ports->nports] =
|
|
|
|
mi->un.s.member[j].mask;
|
|
|
|
ports->miport[ports->nports++] =
|
|
|
|
au_portof(sc, mi->un.s.member[j].label.name,
|
|
|
|
mi->mixer_class);
|
|
|
|
}
|
1997-10-19 11:41:33 +04:00
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
1997-08-20 03:49:33 +04:00
|
|
|
/*
|
|
|
|
* Called from hardware driver. This is where the MI audio driver gets
|
1997-09-06 05:14:48 +04:00
|
|
|
* probed/attached to the hardware driver.
|
1997-08-20 03:49:33 +04:00
|
|
|
*/
|
1999-09-09 14:24:39 +04:00
|
|
|
struct device *
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_attach_mi(struct audio_hw_if *ahwp, void *hdlp, struct device *dev)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1997-08-20 03:49:33 +04:00
|
|
|
struct audio_attach_args arg;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1998-08-18 01:16:09 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (ahwp == NULL) {
|
2003-01-31 05:15:57 +03:00
|
|
|
aprint_error("audio_attach_mi: NULL\n");
|
1999-09-09 14:24:39 +04:00
|
|
|
return (0);
|
1997-10-29 05:00:20 +03:00
|
|
|
}
|
1998-08-18 01:16:09 +04:00
|
|
|
#endif
|
|
|
|
arg.type = AUDIODEV_TYPE_AUDIO;
|
|
|
|
arg.hwif = ahwp;
|
|
|
|
arg.hdl = hdlp;
|
1999-09-09 14:24:39 +04:00
|
|
|
return (config_found(dev, &arg, audioprint));
|
1997-10-29 05:00:20 +03:00
|
|
|
}
|
|
|
|
|
1997-08-20 03:49:33 +04:00
|
|
|
#ifdef AUDIO_DEBUG
|
2001-10-03 03:31:54 +04:00
|
|
|
void audio_printsc(struct audio_softc *);
|
|
|
|
void audio_print_params(char *, struct audio_params *);
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-08-20 03:49:33 +04:00
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_printsc(struct audio_softc *sc)
|
1997-08-20 03:49:33 +04:00
|
|
|
{
|
|
|
|
printf("hwhandle %p hw_if %p ", sc->hw_hdl, sc->hw_if);
|
|
|
|
printf("open 0x%x mode 0x%x\n", sc->sc_open, sc->sc_mode);
|
|
|
|
printf("rchan 0x%x wchan 0x%x ", sc->sc_rchan, sc->sc_wchan);
|
2002-03-23 20:17:10 +03:00
|
|
|
printf("rring used 0x%x pring used=%d\n",
|
1998-12-28 01:52:23 +03:00
|
|
|
sc->sc_rr.used, sc->sc_pr.used);
|
1997-08-20 03:49:33 +04:00
|
|
|
printf("rbus 0x%x pbus 0x%x ", sc->sc_rbus, sc->sc_pbus);
|
|
|
|
printf("blksize %d", sc->sc_pr.blksize);
|
|
|
|
printf("hiwat %d lowat %d\n", sc->sc_pr.usedhigh, sc->sc_pr.usedlow);
|
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-08-20 03:49:33 +04:00
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_print_params(char *s, struct audio_params *p)
|
1997-08-20 03:49:33 +04:00
|
|
|
{
|
|
|
|
printf("audio: %s sr=%ld, enc=%d, chan=%d, prec=%d\n", s,
|
|
|
|
p->sample_rate, p->encoding, p->channels, p->precision);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
2002-03-23 20:17:10 +03:00
|
|
|
audio_alloc_ring(struct audio_softc *sc, struct audio_ringbuffer *r,
|
2001-10-03 03:31:54 +04:00
|
|
|
int direction, size_t bufsize)
|
1997-08-20 03:49:33 +04:00
|
|
|
{
|
|
|
|
struct audio_hw_if *hw = sc->hw_if;
|
|
|
|
void *hdl = sc->hw_hdl;
|
|
|
|
/*
|
|
|
|
* Alloc DMA play and record buffers
|
|
|
|
*/
|
|
|
|
if (bufsize < AUMINBUF)
|
|
|
|
bufsize = AUMINBUF;
|
1999-02-17 05:37:38 +03:00
|
|
|
ROUNDSIZE(bufsize);
|
1997-08-20 03:49:33 +04:00
|
|
|
if (hw->round_buffersize)
|
1999-02-17 05:37:38 +03:00
|
|
|
bufsize = hw->round_buffersize(hdl, direction, bufsize);
|
1998-03-03 12:16:15 +03:00
|
|
|
if (hw->allocm)
|
2002-03-23 20:17:10 +03:00
|
|
|
r->start = hw->allocm(hdl, direction, bufsize,
|
|
|
|
M_DEVBUF, M_WAITOK);
|
1997-08-20 03:49:33 +04:00
|
|
|
else
|
1999-02-17 05:37:38 +03:00
|
|
|
r->start = malloc(bufsize, M_DEVBUF, M_WAITOK);
|
1997-08-20 03:49:33 +04:00
|
|
|
if (r->start == 0)
|
|
|
|
return ENOMEM;
|
1999-02-17 05:37:38 +03:00
|
|
|
r->bufsize = bufsize;
|
1997-08-20 03:49:33 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_free_ring(struct audio_softc *sc, struct audio_ringbuffer *r)
|
1997-08-20 03:49:33 +04:00
|
|
|
{
|
1999-02-17 05:37:38 +03:00
|
|
|
|
|
|
|
if (sc->hw_if->freem)
|
|
|
|
sc->hw_if->freem(sc->hw_hdl, r->start, M_DEVBUF);
|
|
|
|
else
|
|
|
|
free(r->start, M_DEVBUF);
|
|
|
|
r->start = 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
audioopen(dev_t dev, int flags, int ifmt, struct proc *p)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1999-09-09 14:24:39 +04:00
|
|
|
struct audio_softc *sc;
|
|
|
|
int error;
|
|
|
|
|
2000-07-06 04:43:04 +04:00
|
|
|
sc = device_lookup(&audio_cd, AUDIOUNIT(dev));
|
|
|
|
if (sc == NULL)
|
1999-09-09 14:24:39 +04:00
|
|
|
return (ENXIO);
|
|
|
|
|
|
|
|
if (sc->sc_dying)
|
|
|
|
return (EIO);
|
1996-09-02 01:33:43 +04:00
|
|
|
|
1999-09-09 14:24:39 +04:00
|
|
|
sc->sc_refcnt++;
|
1996-09-02 01:33:43 +04:00
|
|
|
switch (AUDIODEV(dev)) {
|
1995-02-21 04:35:58 +03:00
|
|
|
case SOUND_DEVICE:
|
|
|
|
case AUDIO_DEVICE:
|
2003-06-30 02:28:00 +04:00
|
|
|
error = audio_open(dev, sc, flags, ifmt, p);
|
1999-09-09 14:24:39 +04:00
|
|
|
break;
|
1997-08-19 01:19:02 +04:00
|
|
|
case AUDIOCTL_DEVICE:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = 0;
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
case MIXER_DEVICE:
|
2003-06-30 02:28:00 +04:00
|
|
|
error = mixer_open(dev, sc, flags, ifmt, p);
|
1999-09-09 14:24:39 +04:00
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
default:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = ENXIO;
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1999-09-09 14:24:39 +04:00
|
|
|
if (--sc->sc_refcnt < 0)
|
|
|
|
wakeup(&sc->sc_refcnt);
|
|
|
|
return (error);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
audioclose(dev_t dev, int flags, int ifmt, struct proc *p)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1999-09-09 14:24:39 +04:00
|
|
|
int unit = AUDIOUNIT(dev);
|
|
|
|
struct audio_softc *sc = audio_cd.cd_devs[unit];
|
|
|
|
int error;
|
1996-09-02 01:33:43 +04:00
|
|
|
|
|
|
|
switch (AUDIODEV(dev)) {
|
1995-02-21 04:35:58 +03:00
|
|
|
case SOUND_DEVICE:
|
|
|
|
case AUDIO_DEVICE:
|
2003-06-30 02:28:00 +04:00
|
|
|
error = audio_close(sc, flags, ifmt, p);
|
1999-09-09 14:24:39 +04:00
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
case MIXER_DEVICE:
|
2003-06-30 02:28:00 +04:00
|
|
|
error = mixer_close(sc, flags, ifmt, p);
|
1999-09-09 14:24:39 +04:00
|
|
|
break;
|
1997-08-19 01:19:02 +04:00
|
|
|
case AUDIOCTL_DEVICE:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = 0;
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
default:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = ENXIO;
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1999-09-09 14:24:39 +04:00
|
|
|
return (error);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audioread(dev_t dev, struct uio *uio, int ioflag)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1999-09-09 14:24:39 +04:00
|
|
|
struct audio_softc *sc;
|
|
|
|
int error;
|
|
|
|
|
2000-07-06 04:43:04 +04:00
|
|
|
sc = device_lookup(&audio_cd, AUDIOUNIT(dev));
|
|
|
|
if (sc == NULL)
|
|
|
|
return (ENXIO);
|
1996-09-02 01:33:43 +04:00
|
|
|
|
1999-09-09 14:24:39 +04:00
|
|
|
if (sc->sc_dying)
|
|
|
|
return (EIO);
|
|
|
|
|
|
|
|
sc->sc_refcnt++;
|
1996-09-02 01:33:43 +04:00
|
|
|
switch (AUDIODEV(dev)) {
|
1995-02-21 04:35:58 +03:00
|
|
|
case SOUND_DEVICE:
|
|
|
|
case AUDIO_DEVICE:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = audio_read(sc, uio, ioflag);
|
|
|
|
break;
|
1997-08-19 01:19:02 +04:00
|
|
|
case AUDIOCTL_DEVICE:
|
1995-02-21 04:35:58 +03:00
|
|
|
case MIXER_DEVICE:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = ENODEV;
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
default:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = ENXIO;
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1999-09-09 14:24:39 +04:00
|
|
|
if (--sc->sc_refcnt < 0)
|
|
|
|
wakeup(&sc->sc_refcnt);
|
|
|
|
return (error);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audiowrite(dev_t dev, struct uio *uio, int ioflag)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1999-09-09 14:24:39 +04:00
|
|
|
struct audio_softc *sc;
|
|
|
|
int error;
|
|
|
|
|
2000-07-06 04:43:04 +04:00
|
|
|
sc = device_lookup(&audio_cd, AUDIOUNIT(dev));
|
|
|
|
if (sc == NULL)
|
|
|
|
return (ENXIO);
|
1996-09-02 01:33:43 +04:00
|
|
|
|
1999-09-09 14:24:39 +04:00
|
|
|
if (sc->sc_dying)
|
|
|
|
return (EIO);
|
|
|
|
|
|
|
|
sc->sc_refcnt++;
|
1996-09-02 01:33:43 +04:00
|
|
|
switch (AUDIODEV(dev)) {
|
1995-02-21 04:35:58 +03:00
|
|
|
case SOUND_DEVICE:
|
|
|
|
case AUDIO_DEVICE:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = audio_write(sc, uio, ioflag);
|
|
|
|
break;
|
1997-08-19 01:19:02 +04:00
|
|
|
case AUDIOCTL_DEVICE:
|
1995-02-21 04:35:58 +03:00
|
|
|
case MIXER_DEVICE:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = ENODEV;
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
default:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = ENXIO;
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1999-09-09 14:24:39 +04:00
|
|
|
if (--sc->sc_refcnt < 0)
|
|
|
|
wakeup(&sc->sc_refcnt);
|
|
|
|
return (error);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
audioioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct proc *p)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1999-09-09 14:24:39 +04:00
|
|
|
int unit = AUDIOUNIT(dev);
|
|
|
|
struct audio_softc *sc = audio_cd.cd_devs[unit];
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if (sc->sc_dying)
|
|
|
|
return (EIO);
|
1996-09-02 01:33:43 +04:00
|
|
|
|
1999-09-09 14:24:39 +04:00
|
|
|
sc->sc_refcnt++;
|
1996-09-02 01:33:43 +04:00
|
|
|
switch (AUDIODEV(dev)) {
|
1995-02-21 04:35:58 +03:00
|
|
|
case SOUND_DEVICE:
|
|
|
|
case AUDIO_DEVICE:
|
1997-08-19 01:19:02 +04:00
|
|
|
case AUDIOCTL_DEVICE:
|
2003-06-30 02:28:00 +04:00
|
|
|
error = audio_ioctl(sc, cmd, addr, flag, p);
|
1999-09-09 14:24:39 +04:00
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
case MIXER_DEVICE:
|
2003-06-30 02:28:00 +04:00
|
|
|
error = mixer_ioctl(sc, cmd, addr, flag, p);
|
1999-09-09 14:24:39 +04:00
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
default:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = ENXIO;
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1999-09-09 14:24:39 +04:00
|
|
|
if (--sc->sc_refcnt < 0)
|
|
|
|
wakeup(&sc->sc_refcnt);
|
|
|
|
return (error);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
audiopoll(dev_t dev, int events, struct proc *p)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1999-09-09 14:24:39 +04:00
|
|
|
int unit = AUDIOUNIT(dev);
|
|
|
|
struct audio_softc *sc = audio_cd.cd_devs[unit];
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if (sc->sc_dying)
|
|
|
|
return (EIO);
|
1996-09-02 01:33:43 +04:00
|
|
|
|
1999-09-09 14:24:39 +04:00
|
|
|
sc->sc_refcnt++;
|
1996-09-02 01:33:43 +04:00
|
|
|
switch (AUDIODEV(dev)) {
|
1995-02-21 04:35:58 +03:00
|
|
|
case SOUND_DEVICE:
|
|
|
|
case AUDIO_DEVICE:
|
2003-06-30 02:28:00 +04:00
|
|
|
error = audio_poll(sc, events, p);
|
1999-09-09 14:24:39 +04:00
|
|
|
break;
|
1997-08-19 01:19:02 +04:00
|
|
|
case AUDIOCTL_DEVICE:
|
1995-02-21 04:35:58 +03:00
|
|
|
case MIXER_DEVICE:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = ENODEV;
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
default:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = ENXIO;
|
|
|
|
break;
|
1996-09-02 01:33:43 +04:00
|
|
|
}
|
1999-09-09 14:24:39 +04:00
|
|
|
if (--sc->sc_refcnt < 0)
|
|
|
|
wakeup(&sc->sc_refcnt);
|
|
|
|
return (error);
|
1996-09-02 01:33:43 +04:00
|
|
|
}
|
|
|
|
|
2002-10-23 13:10:23 +04:00
|
|
|
int
|
|
|
|
audiokqfilter(dev_t dev, struct knote *kn)
|
|
|
|
{
|
|
|
|
int unit = AUDIOUNIT(dev);
|
|
|
|
struct audio_softc *sc = audio_cd.cd_devs[unit];
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
if (sc->sc_dying)
|
|
|
|
return (1);
|
|
|
|
|
|
|
|
sc->sc_refcnt++;
|
|
|
|
switch (AUDIODEV(dev)) {
|
|
|
|
case SOUND_DEVICE:
|
|
|
|
case AUDIO_DEVICE:
|
|
|
|
rv = audio_kqfilter(sc, kn);
|
|
|
|
break;
|
|
|
|
case AUDIOCTL_DEVICE:
|
|
|
|
case MIXER_DEVICE:
|
|
|
|
rv = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rv = 1;
|
|
|
|
}
|
|
|
|
if (--sc->sc_refcnt < 0)
|
|
|
|
wakeup(&sc->sc_refcnt);
|
|
|
|
return (rv);
|
|
|
|
}
|
|
|
|
|
2000-06-26 08:55:19 +04:00
|
|
|
paddr_t
|
2001-10-03 03:31:54 +04:00
|
|
|
audiommap(dev_t dev, off_t off, int prot)
|
1996-09-02 01:33:43 +04:00
|
|
|
{
|
1999-09-09 14:24:39 +04:00
|
|
|
int unit = AUDIOUNIT(dev);
|
|
|
|
struct audio_softc *sc = audio_cd.cd_devs[unit];
|
2000-06-26 08:55:19 +04:00
|
|
|
paddr_t error;
|
1999-09-09 14:24:39 +04:00
|
|
|
|
|
|
|
if (sc->sc_dying)
|
|
|
|
return (-1);
|
1996-09-02 01:33:43 +04:00
|
|
|
|
1999-09-09 14:24:39 +04:00
|
|
|
sc->sc_refcnt++;
|
1996-09-02 01:33:43 +04:00
|
|
|
switch (AUDIODEV(dev)) {
|
|
|
|
case SOUND_DEVICE:
|
|
|
|
case AUDIO_DEVICE:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = audio_mmap(sc, off, prot);
|
|
|
|
break;
|
1997-08-19 01:19:02 +04:00
|
|
|
case AUDIOCTL_DEVICE:
|
1996-09-02 01:33:43 +04:00
|
|
|
case MIXER_DEVICE:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = -1;
|
|
|
|
break;
|
1996-09-02 01:33:43 +04:00
|
|
|
default:
|
1999-09-09 14:24:39 +04:00
|
|
|
error = -1;
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1999-09-09 14:24:39 +04:00
|
|
|
if (--sc->sc_refcnt < 0)
|
|
|
|
wakeup(&sc->sc_refcnt);
|
|
|
|
return (error);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Audio driver
|
|
|
|
*/
|
1995-04-18 03:04:31 +04:00
|
|
|
void
|
2003-10-02 11:15:20 +04:00
|
|
|
audio_init_ringbuffer(struct audio_softc *sc, struct audio_ringbuffer *rp)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1997-07-27 05:16:32 +04:00
|
|
|
int nblks;
|
|
|
|
int blksize = rp->blksize;
|
|
|
|
|
1997-07-28 03:06:04 +04:00
|
|
|
if (blksize < AUMINBLK)
|
|
|
|
blksize = AUMINBLK;
|
2003-10-02 11:15:20 +04:00
|
|
|
if (blksize > rp->bufsize / AUMINNOBLK)
|
|
|
|
blksize = rp->bufsize / AUMINNOBLK;
|
|
|
|
ROUNDSIZE(blksize);
|
|
|
|
if (sc->hw_if->round_blocksize)
|
|
|
|
blksize = sc->hw_if->round_blocksize(sc->hw_hdl, blksize);
|
|
|
|
if (blksize <= 0)
|
|
|
|
panic("audio_init_ringbuffer: blksize");
|
1997-07-27 05:16:32 +04:00
|
|
|
nblks = rp->bufsize / blksize;
|
2003-10-02 11:15:20 +04:00
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
DPRINTF(("audio_init_ringbuffer: blksize=%d\n", blksize));
|
|
|
|
rp->blksize = blksize;
|
|
|
|
rp->maxblks = nblks;
|
|
|
|
rp->used = 0;
|
|
|
|
rp->end = rp->start + nblks * blksize;
|
|
|
|
rp->inp = rp->outp = rp->start;
|
|
|
|
rp->stamp = 0;
|
|
|
|
rp->drops = 0;
|
|
|
|
rp->pause = 0;
|
|
|
|
rp->copying = 0;
|
|
|
|
rp->needfill = 0;
|
|
|
|
rp->mmapped = 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
1997-08-25 02:31:23 +04:00
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_initbufs(struct audio_softc *sc)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1997-07-27 05:16:32 +04:00
|
|
|
struct audio_hw_if *hw = sc->hw_if;
|
1997-08-25 02:31:23 +04:00
|
|
|
int error;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-08-06 11:39:59 +04:00
|
|
|
DPRINTF(("audio_initbufs: mode=0x%x\n", sc->sc_mode));
|
2003-10-02 11:15:20 +04:00
|
|
|
audio_init_ringbuffer(sc, &sc->sc_rr);
|
2002-03-09 23:30:42 +03:00
|
|
|
#if NAURATECONV > 0
|
2002-03-07 17:37:02 +03:00
|
|
|
auconv_init_context(&sc->sc_rconv, sc->sc_rparams.hw_sample_rate,
|
|
|
|
sc->sc_rparams.sample_rate,
|
|
|
|
sc->sc_rr.start, sc->sc_rr.end);
|
2002-03-09 23:30:42 +03:00
|
|
|
#endif
|
1997-08-25 02:31:23 +04:00
|
|
|
if (hw->init_input && (sc->sc_mode & AUMODE_RECORD)) {
|
|
|
|
error = hw->init_input(sc->hw_hdl, sc->sc_rr.start,
|
|
|
|
sc->sc_rr.end - sc->sc_rr.start);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
}
|
1997-07-27 05:16:32 +04:00
|
|
|
|
2003-10-02 11:15:20 +04:00
|
|
|
audio_init_ringbuffer(sc, &sc->sc_pr);
|
2002-03-09 23:30:42 +03:00
|
|
|
#if NAURATECONV > 0
|
2002-03-07 17:37:02 +03:00
|
|
|
auconv_init_context(&sc->sc_pconv, sc->sc_pparams.sample_rate,
|
|
|
|
sc->sc_pparams.hw_sample_rate,
|
|
|
|
sc->sc_pr.start, sc->sc_pr.end);
|
2002-03-09 23:30:42 +03:00
|
|
|
#endif
|
1997-07-27 05:16:32 +04:00
|
|
|
sc->sc_sil_count = 0;
|
1997-08-25 02:31:23 +04:00
|
|
|
if (hw->init_output && (sc->sc_mode & AUMODE_PLAY)) {
|
|
|
|
error = hw->init_output(sc->hw_hdl, sc->sc_pr.start,
|
|
|
|
sc->sc_pr.end - sc->sc_pr.start);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
}
|
1997-07-27 05:16:32 +04:00
|
|
|
|
1997-08-07 03:08:26 +04:00
|
|
|
#ifdef AUDIO_INTR_TIME
|
1998-08-04 15:26:14 +04:00
|
|
|
#define double u_long
|
1997-08-07 03:08:26 +04:00
|
|
|
sc->sc_pnintr = 0;
|
|
|
|
sc->sc_pblktime = (u_long)(
|
2002-03-23 20:17:10 +03:00
|
|
|
(double)sc->sc_pr.blksize * 100000 /
|
|
|
|
(double)(sc->sc_pparams.precision / NBBY *
|
|
|
|
sc->sc_pparams.channels *
|
1998-08-04 15:26:14 +04:00
|
|
|
sc->sc_pparams.sample_rate)) * 10;
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTF(("audio: play blktime = %lu for %d\n",
|
1997-08-07 03:08:26 +04:00
|
|
|
sc->sc_pblktime, sc->sc_pr.blksize));
|
|
|
|
sc->sc_rnintr = 0;
|
|
|
|
sc->sc_rblktime = (u_long)(
|
2002-03-23 20:17:10 +03:00
|
|
|
(double)sc->sc_rr.blksize * 100000 /
|
|
|
|
(double)(sc->sc_rparams.precision / NBBY *
|
|
|
|
sc->sc_rparams.channels *
|
1998-08-04 15:26:14 +04:00
|
|
|
sc->sc_rparams.sample_rate)) * 10;
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTF(("audio: record blktime = %lu for %d\n",
|
1997-08-07 03:08:26 +04:00
|
|
|
sc->sc_rblktime, sc->sc_rr.blksize));
|
1998-08-04 15:26:14 +04:00
|
|
|
#undef double
|
1997-08-07 03:08:26 +04:00
|
|
|
#endif
|
1997-08-25 02:31:23 +04:00
|
|
|
|
|
|
|
return 0;
|
1997-08-07 03:08:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_calcwater(struct audio_softc *sc)
|
1997-08-07 03:08:26 +04:00
|
|
|
{
|
1997-07-27 05:16:32 +04:00
|
|
|
sc->sc_pr.usedhigh = sc->sc_pr.end - sc->sc_pr.start;
|
1998-12-28 01:52:23 +03:00
|
|
|
sc->sc_pr.usedlow = sc->sc_pr.usedhigh * 3 / 4; /* set low at 75% */
|
1997-07-27 05:16:32 +04:00
|
|
|
if (sc->sc_pr.usedlow == sc->sc_pr.usedhigh)
|
|
|
|
sc->sc_pr.usedlow -= sc->sc_pr.blksize;
|
2002-03-23 20:17:10 +03:00
|
|
|
sc->sc_rr.usedhigh =
|
2002-12-31 03:33:10 +03:00
|
|
|
sc->sc_rr.end - sc->sc_rr.start - sc->sc_rr.blksize;
|
1997-07-27 05:16:32 +04:00
|
|
|
sc->sc_rr.usedlow = 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
1996-03-07 18:00:07 +03:00
|
|
|
static __inline int
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_sleep_timo(int *chan, char *label, int timo)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
|
|
|
int st;
|
|
|
|
|
|
|
|
if (!label)
|
|
|
|
label = "audio";
|
1997-09-06 05:14:48 +04:00
|
|
|
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTFN(3, ("audio_sleep_timo: chan=%p, label=%s, timo=%d\n",
|
|
|
|
chan, label, timo));
|
1995-02-21 04:35:58 +03:00
|
|
|
*chan = 1;
|
1997-07-27 05:16:32 +04:00
|
|
|
st = tsleep(chan, PWAIT | PCATCH, label, timo);
|
1995-02-21 04:35:58 +03:00
|
|
|
*chan = 0;
|
1997-07-27 05:16:32 +04:00
|
|
|
#ifdef AUDIO_DEBUG
|
2000-03-26 14:01:32 +04:00
|
|
|
if (st != 0 && st != EINTR)
|
2001-06-04 03:52:51 +04:00
|
|
|
DPRINTF(("audio_sleep: woke up st=%d\n", st));
|
1997-07-27 05:16:32 +04:00
|
|
|
#endif
|
1995-02-21 04:35:58 +03:00
|
|
|
return (st);
|
|
|
|
}
|
|
|
|
|
1996-03-07 18:00:07 +03:00
|
|
|
static __inline int
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_sleep(int *chan, char *label)
|
1995-07-07 05:52:30 +04:00
|
|
|
{
|
1997-07-27 05:16:32 +04:00
|
|
|
return audio_sleep_timo(chan, label, 0);
|
1995-07-07 05:52:30 +04:00
|
|
|
}
|
|
|
|
|
1997-09-06 05:14:48 +04:00
|
|
|
/* call at splaudio() */
|
1996-03-07 18:00:07 +03:00
|
|
|
static __inline void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_wakeup(int *chan)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1998-04-28 13:07:12 +04:00
|
|
|
DPRINTFN(3, ("audio_wakeup: chan=%p, *chan=%d\n", chan, *chan));
|
1995-02-21 04:35:58 +03:00
|
|
|
if (*chan) {
|
1995-03-25 03:00:53 +03:00
|
|
|
wakeup(chan);
|
1995-02-21 04:35:58 +03:00
|
|
|
*chan = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_open(dev_t dev, struct audio_softc *sc, int flags, int ifmt,
|
2003-06-30 02:28:00 +04:00
|
|
|
struct proc *p)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1997-07-27 05:16:32 +04:00
|
|
|
int error;
|
2003-10-02 11:15:20 +04:00
|
|
|
u_int mode;
|
1995-02-21 04:35:58 +03:00
|
|
|
struct audio_hw_if *hw;
|
|
|
|
|
|
|
|
hw = sc->hw_if;
|
1997-08-20 03:49:33 +04:00
|
|
|
if (!hw)
|
|
|
|
return ENXIO;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTF(("audio_open: flags=0x%x sc=%p hdl=%p\n",
|
1999-09-09 14:24:39 +04:00
|
|
|
flags, sc, sc->hw_hdl));
|
1997-08-19 01:19:02 +04:00
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
if ((sc->sc_open & (AUOPEN_READ|AUOPEN_WRITE)) != 0)
|
1995-02-21 04:35:58 +03:00
|
|
|
return (EBUSY);
|
|
|
|
|
1997-08-01 02:33:08 +04:00
|
|
|
error = hw->open(sc->hw_hdl, flags);
|
1997-07-27 05:16:32 +04:00
|
|
|
if (error)
|
1995-02-21 04:35:58 +03:00
|
|
|
return (error);
|
|
|
|
|
1997-08-25 02:31:23 +04:00
|
|
|
sc->sc_async_audio = 0;
|
|
|
|
sc->sc_rchan = 0;
|
|
|
|
sc->sc_wchan = 0;
|
|
|
|
sc->sc_sil_count = 0;
|
|
|
|
sc->sc_rbus = 0;
|
|
|
|
sc->sc_pbus = 0;
|
|
|
|
sc->sc_eof = 0;
|
|
|
|
sc->sc_playdrop = 0;
|
|
|
|
|
1997-08-26 23:03:55 +04:00
|
|
|
sc->sc_full_duplex = 0;
|
|
|
|
/* doesn't always work right on SB.
|
|
|
|
(flags & (FWRITE|FREAD)) == (FWRITE|FREAD) &&
|
1997-08-25 02:31:23 +04:00
|
|
|
(hw->get_props(sc->hw_hdl) & AUDIO_PROP_FULLDUPLEX);
|
1997-08-26 23:03:55 +04:00
|
|
|
*/
|
1997-08-25 02:31:23 +04:00
|
|
|
|
|
|
|
mode = 0;
|
|
|
|
if (flags & FREAD) {
|
1995-02-21 04:35:58 +03:00
|
|
|
sc->sc_open |= AUOPEN_READ;
|
1997-08-25 02:31:23 +04:00
|
|
|
mode |= AUMODE_RECORD;
|
|
|
|
}
|
|
|
|
if (flags & FWRITE) {
|
1995-02-21 04:35:58 +03:00
|
|
|
sc->sc_open |= AUOPEN_WRITE;
|
1997-08-25 02:31:23 +04:00
|
|
|
mode |= AUMODE_PLAY | AUMODE_PLAY_ALL;
|
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Multiplex device: /dev/audio (MU-Law) and /dev/sound (linear)
|
|
|
|
* The /dev/audio is always (re)set to 8-bit MU-Law mono
|
|
|
|
* For the other devices, you get what they were last set to.
|
|
|
|
*/
|
|
|
|
if (ISDEVAUDIO(dev)) {
|
2003-10-02 11:15:20 +04:00
|
|
|
error = audio_set_defaults(sc, mode);
|
|
|
|
} else {
|
|
|
|
struct audio_info ai;
|
|
|
|
|
|
|
|
AUDIO_INITINFO(&ai);
|
|
|
|
ai.mode = mode;
|
|
|
|
error = audiosetinfo(sc, &ai);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
2003-10-02 11:15:20 +04:00
|
|
|
if (error)
|
|
|
|
goto bad;
|
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
1995-02-21 04:35:58 +03:00
|
|
|
/*
|
|
|
|
* Sample rate and precision are supposed to be set to proper
|
|
|
|
* default values by the hardware driver, so that it may give
|
|
|
|
* us these values.
|
|
|
|
*/
|
1997-05-01 16:27:10 +04:00
|
|
|
if (sc->sc_rparams.precision == 0 || sc->sc_pparams.precision == 0) {
|
1997-04-30 01:01:33 +04:00
|
|
|
printf("audio_open: 0 precision\n");
|
|
|
|
return EINVAL;
|
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
#endif
|
1997-03-20 19:13:55 +03:00
|
|
|
|
2001-01-25 18:25:34 +03:00
|
|
|
/* audio_close() decreases sc_pr.usedlow, recalculate here */
|
|
|
|
audio_calcwater(sc);
|
1997-03-20 19:13:55 +03:00
|
|
|
|
1997-08-25 02:31:23 +04:00
|
|
|
DPRINTF(("audio_open: done sc_mode = 0x%x\n", sc->sc_mode));
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1997-08-25 02:31:23 +04:00
|
|
|
return 0;
|
1997-07-27 05:16:32 +04:00
|
|
|
|
1997-08-25 02:31:23 +04:00
|
|
|
bad:
|
|
|
|
hw->close(sc->hw_hdl);
|
|
|
|
sc->sc_open = 0;
|
|
|
|
sc->sc_mode = 0;
|
|
|
|
sc->sc_full_duplex = 0;
|
|
|
|
return error;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Must be called from task context.
|
|
|
|
*/
|
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_init_record(struct audio_softc *sc)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
|
|
|
int s = splaudio();
|
|
|
|
|
1995-07-07 05:52:30 +04:00
|
|
|
if (sc->hw_if->speaker_ctl &&
|
1997-07-27 05:16:32 +04:00
|
|
|
(!sc->sc_full_duplex || (sc->sc_mode & AUMODE_PLAY) == 0))
|
1995-02-21 04:35:58 +03:00
|
|
|
sc->hw_if->speaker_ctl(sc->hw_hdl, SPKR_OFF);
|
2002-03-15 17:35:32 +03:00
|
|
|
sc->sc_rconvbuffer_begin = 0;
|
|
|
|
sc->sc_rconvbuffer_end = 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Must be called from task context.
|
|
|
|
*/
|
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_init_play(struct audio_softc *sc)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
|
|
|
int s = splaudio();
|
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
sc->sc_wstamp = sc->sc_pr.stamp;
|
1995-02-21 04:35:58 +03:00
|
|
|
if (sc->hw_if->speaker_ctl)
|
|
|
|
sc->hw_if->speaker_ctl(sc->hw_hdl, SPKR_ON);
|
2002-03-15 17:35:32 +03:00
|
|
|
sc->sc_input_fragment_length = 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
1995-04-18 03:04:31 +04:00
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_drain(struct audio_softc *sc)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1997-07-27 05:16:32 +04:00
|
|
|
int error, drops;
|
|
|
|
struct audio_ringbuffer *cb = &sc->sc_pr;
|
1997-09-06 05:14:48 +04:00
|
|
|
int s;
|
1997-07-27 05:16:32 +04:00
|
|
|
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTF(("audio_drain: enter busy=%d used=%d\n",
|
|
|
|
sc->sc_pbus, sc->sc_pr.used));
|
1997-07-27 05:16:32 +04:00
|
|
|
if (sc->sc_pr.mmapped || sc->sc_pr.used <= 0)
|
|
|
|
return 0;
|
|
|
|
if (!sc->sc_pbus) {
|
|
|
|
/* We've never started playing, probably because the
|
|
|
|
* block was too short. Pad it and start now.
|
|
|
|
*/
|
1997-09-06 05:14:48 +04:00
|
|
|
int cc;
|
1997-07-27 05:16:32 +04:00
|
|
|
u_char *inp = cb->inp;
|
|
|
|
|
|
|
|
cc = cb->blksize - (inp - cb->start) % cb->blksize;
|
|
|
|
audio_fill_silence(&sc->sc_pparams, inp, cc);
|
|
|
|
inp += cc;
|
|
|
|
if (inp >= cb->end)
|
|
|
|
inp = cb->start;
|
|
|
|
s = splaudio();
|
|
|
|
cb->used += cc;
|
|
|
|
cb->inp = inp;
|
1997-08-25 02:31:23 +04:00
|
|
|
error = audiostartp(sc);
|
1997-07-27 05:16:32 +04:00
|
|
|
splx(s);
|
1997-08-25 02:31:23 +04:00
|
|
|
if (error)
|
|
|
|
return error;
|
1997-07-27 05:16:32 +04:00
|
|
|
}
|
2002-03-23 20:17:10 +03:00
|
|
|
/*
|
1997-07-27 05:16:32 +04:00
|
|
|
* Play until a silence block has been played, then we
|
|
|
|
* know all has been drained.
|
|
|
|
* XXX This should be done some other way to avoid
|
|
|
|
* playing silence.
|
|
|
|
*/
|
1997-08-20 03:49:33 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (cb->copying) {
|
|
|
|
printf("audio_drain: copying in progress!?!\n");
|
|
|
|
cb->copying = 0;
|
|
|
|
}
|
|
|
|
#endif
|
1997-07-27 05:16:32 +04:00
|
|
|
drops = cb->drops;
|
1997-09-06 05:14:48 +04:00
|
|
|
error = 0;
|
|
|
|
s = splaudio();
|
|
|
|
while (cb->drops == drops && !error) {
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTF(("audio_drain: used=%d, drops=%ld\n",
|
1998-12-28 01:52:23 +03:00
|
|
|
sc->sc_pr.used, cb->drops));
|
1995-07-07 05:52:30 +04:00
|
|
|
/*
|
|
|
|
* When the process is exiting, it ignores all signals and
|
1998-12-28 01:52:23 +03:00
|
|
|
* we can't interrupt this sleep, so we set a timeout
|
|
|
|
* just in case.
|
1995-07-07 05:52:30 +04:00
|
|
|
*/
|
1998-05-18 22:27:43 +04:00
|
|
|
error = audio_sleep_timo(&sc->sc_wchan, "aud_dr", 30*hz);
|
1999-09-09 14:24:39 +04:00
|
|
|
if (sc->sc_dying)
|
|
|
|
error = EIO;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1997-09-06 05:14:48 +04:00
|
|
|
splx(s);
|
|
|
|
return error;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Close an audio chip.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
audio_close(struct audio_softc *sc, int flags, int ifmt, struct proc *p)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
|
|
|
struct audio_hw_if *hw = sc->hw_if;
|
|
|
|
int s;
|
|
|
|
|
1999-09-09 14:24:39 +04:00
|
|
|
DPRINTF(("audio_close: sc=%p\n", sc));
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1998-08-09 11:25:58 +04:00
|
|
|
s = splaudio();
|
2002-03-23 20:17:10 +03:00
|
|
|
/* Stop recording. */
|
1998-08-09 11:25:58 +04:00
|
|
|
if ((flags & FREAD) && sc->sc_rbus) {
|
2002-03-23 20:17:10 +03:00
|
|
|
/*
|
1997-12-03 04:01:19 +03:00
|
|
|
* XXX Some drivers (e.g. SB) use the same routine
|
|
|
|
* to halt input and output so don't halt input if
|
|
|
|
* in full duplex mode. These drivers should be fixed.
|
|
|
|
*/
|
2002-03-23 20:17:10 +03:00
|
|
|
if (!sc->sc_full_duplex ||
|
1998-12-28 01:52:23 +03:00
|
|
|
sc->hw_if->halt_input != sc->hw_if->halt_output)
|
1997-12-03 04:01:19 +03:00
|
|
|
sc->hw_if->halt_input(sc->hw_hdl);
|
|
|
|
sc->sc_rbus = 0;
|
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
/*
|
|
|
|
* Block until output drains, but allow ^C interrupt.
|
|
|
|
*/
|
1997-07-27 05:16:32 +04:00
|
|
|
sc->sc_pr.usedlow = sc->sc_pr.blksize; /* avoid excessive wakeups */
|
1995-02-21 04:35:58 +03:00
|
|
|
/*
|
|
|
|
* If there is pending output, let it drain (unless
|
|
|
|
* the output is paused).
|
|
|
|
*/
|
1998-08-09 11:25:58 +04:00
|
|
|
if ((flags & FWRITE) && sc->sc_pbus) {
|
|
|
|
if (!sc->sc_pr.pause && !audio_drain(sc) && hw->drain)
|
1995-02-21 04:35:58 +03:00
|
|
|
(void)hw->drain(sc->hw_hdl);
|
1998-08-09 11:25:58 +04:00
|
|
|
sc->hw_if->halt_output(sc->hw_hdl);
|
|
|
|
sc->sc_pbus = 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
hw->close(sc->hw_hdl);
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1998-08-09 11:25:58 +04:00
|
|
|
if (flags & FREAD) {
|
1995-02-21 04:35:58 +03:00
|
|
|
sc->sc_open &= ~AUOPEN_READ;
|
1998-08-09 11:25:58 +04:00
|
|
|
sc->sc_mode &= ~AUMODE_RECORD;
|
|
|
|
}
|
|
|
|
if (flags & FWRITE) {
|
1995-02-21 04:35:58 +03:00
|
|
|
sc->sc_open &= ~AUOPEN_WRITE;
|
1998-08-09 11:25:58 +04:00
|
|
|
sc->sc_mode &= ~(AUMODE_PLAY|AUMODE_PLAY_ALL);
|
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-08-11 05:38:12 +04:00
|
|
|
sc->sc_async_audio = 0;
|
1997-08-25 02:31:23 +04:00
|
|
|
sc->sc_full_duplex = 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
splx(s);
|
1995-07-07 05:52:30 +04:00
|
|
|
DPRINTF(("audio_close: done\n"));
|
1995-02-21 04:35:58 +03:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_read(struct audio_softc *sc, struct uio *uio, int ioflag)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1997-07-27 05:16:32 +04:00
|
|
|
struct audio_ringbuffer *cb = &sc->sc_rr;
|
|
|
|
u_char *outp;
|
|
|
|
int error, s, used, cc, n;
|
2002-03-07 17:37:02 +03:00
|
|
|
const struct audio_params *params;
|
2002-03-16 11:58:49 +03:00
|
|
|
int hw_bits_per_sample;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
if (cb->mmapped)
|
|
|
|
return EINVAL;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTFN(1,("audio_read: cc=%lu mode=%d\n",
|
|
|
|
(unsigned long)uio->uio_resid, sc->sc_mode));
|
1995-02-21 04:35:58 +03:00
|
|
|
|
2002-03-07 17:37:02 +03:00
|
|
|
params = &sc->sc_rparams;
|
|
|
|
switch (params->hw_encoding) {
|
|
|
|
case AUDIO_ENCODING_SLINEAR_LE:
|
|
|
|
case AUDIO_ENCODING_SLINEAR_BE:
|
|
|
|
case AUDIO_ENCODING_ULINEAR_LE:
|
|
|
|
case AUDIO_ENCODING_ULINEAR_BE:
|
2002-03-16 11:58:49 +03:00
|
|
|
hw_bits_per_sample = params->hw_channels * params->precision
|
2002-03-07 17:37:02 +03:00
|
|
|
* params->factor;
|
|
|
|
break;
|
|
|
|
default:
|
2002-03-16 11:58:49 +03:00
|
|
|
hw_bits_per_sample = 8 * params->factor / params->factor_denom;
|
2002-03-07 17:37:02 +03:00
|
|
|
}
|
1997-07-27 05:16:32 +04:00
|
|
|
error = 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
/*
|
|
|
|
* If hardware is half-duplex and currently playing, return
|
|
|
|
* silence blocks based on the number of blocks we have output.
|
|
|
|
*/
|
1997-07-27 05:16:32 +04:00
|
|
|
if (!sc->sc_full_duplex &&
|
1995-07-07 05:52:30 +04:00
|
|
|
(sc->sc_mode & AUMODE_PLAY)) {
|
1997-07-27 05:16:32 +04:00
|
|
|
while (uio->uio_resid > 0 && !error) {
|
1995-02-21 04:35:58 +03:00
|
|
|
s = splaudio();
|
1997-07-27 05:16:32 +04:00
|
|
|
for(;;) {
|
|
|
|
cc = sc->sc_pr.stamp - sc->sc_wstamp;
|
|
|
|
if (cc > 0)
|
|
|
|
break;
|
1998-12-28 01:52:23 +03:00
|
|
|
DPRINTF(("audio_read: stamp=%lu, wstamp=%lu\n",
|
1997-07-27 05:16:32 +04:00
|
|
|
sc->sc_pr.stamp, sc->sc_wstamp));
|
1995-02-21 04:35:58 +03:00
|
|
|
if (ioflag & IO_NDELAY) {
|
|
|
|
splx(s);
|
1998-12-28 01:52:23 +03:00
|
|
|
return (EWOULDBLOCK);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1998-05-18 22:27:43 +04:00
|
|
|
error = audio_sleep(&sc->sc_rchan, "aud_hr");
|
1999-09-09 14:24:39 +04:00
|
|
|
if (sc->sc_dying)
|
|
|
|
error = EIO;
|
1996-02-20 14:47:22 +03:00
|
|
|
if (error) {
|
1995-02-21 04:35:58 +03:00
|
|
|
splx(s);
|
1998-12-28 01:52:23 +03:00
|
|
|
return (error);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
splx(s);
|
1997-07-27 05:16:32 +04:00
|
|
|
|
|
|
|
if (uio->uio_resid < cc)
|
|
|
|
cc = uio->uio_resid;
|
1998-12-28 01:52:23 +03:00
|
|
|
DPRINTFN(1,("audio_read: reading in write mode, "
|
|
|
|
"cc=%d\n", cc));
|
1997-07-27 05:16:32 +04:00
|
|
|
error = audio_silence_copyout(sc, cc, uio);
|
|
|
|
sc->sc_wstamp += cc;
|
2002-03-23 20:17:10 +03:00
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
return (error);
|
|
|
|
}
|
1997-07-27 05:16:32 +04:00
|
|
|
while (uio->uio_resid > 0 && !error) {
|
2002-03-07 17:37:02 +03:00
|
|
|
if (sc->sc_rconvbuffer_end - sc->sc_rconvbuffer_begin <= 0) {
|
2002-03-09 10:25:41 +03:00
|
|
|
s = splaudio();
|
2002-03-17 06:20:40 +03:00
|
|
|
while (cb->used * 8 < hw_bits_per_sample) {
|
2002-03-07 17:37:02 +03:00
|
|
|
if (!sc->sc_rbus) {
|
|
|
|
error = audiostartr(sc);
|
|
|
|
if (error) {
|
|
|
|
splx(s);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ioflag & IO_NDELAY) {
|
|
|
|
splx(s);
|
|
|
|
return (EWOULDBLOCK);
|
|
|
|
}
|
|
|
|
DPRINTFN(1, ("audio_read: sleep used=%d\n",
|
|
|
|
cb->used));
|
|
|
|
error = audio_sleep(&sc->sc_rchan, "aud_rd");
|
|
|
|
if (sc->sc_dying)
|
|
|
|
error = EIO;
|
1997-09-06 05:14:48 +04:00
|
|
|
if (error) {
|
|
|
|
splx(s);
|
2002-03-16 11:58:49 +03:00
|
|
|
return error;
|
1997-09-06 05:14:48 +04:00
|
|
|
}
|
1997-08-25 02:31:23 +04:00
|
|
|
}
|
2002-03-07 17:37:02 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Move data in the ring buffer to sc_rconvbuffer as
|
|
|
|
* possible with/without rate conversion.
|
|
|
|
*/
|
|
|
|
used = cb->used;
|
|
|
|
outp = cb->outp;
|
|
|
|
cb->copying = 1;
|
|
|
|
splx(s);
|
|
|
|
cc = used - cb->usedlow; /* maximum to read */
|
|
|
|
if (cc > sc->sc_rconvbuffer_size)
|
|
|
|
cc = sc->sc_rconvbuffer_size;
|
2002-03-21 08:22:24 +03:00
|
|
|
n = cc * params->factor / params->factor_denom;
|
|
|
|
if (n < cc)
|
|
|
|
cc = n;
|
2002-03-07 17:37:02 +03:00
|
|
|
/* cc must be aligned by the sample size */
|
2002-03-16 11:58:49 +03:00
|
|
|
cc = (cc * 8 / hw_bits_per_sample) * hw_bits_per_sample / 8;
|
2002-03-07 17:37:02 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (cc == 0)
|
2002-03-16 11:58:49 +03:00
|
|
|
printf("audio_read: cc=0 hw_bits_per_sample=%d\n",
|
|
|
|
hw_bits_per_sample);
|
2002-03-07 17:37:02 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The format of data in the ring buffer is
|
|
|
|
* [hw_sample_rate, hw_encoding, hw_precision, hw_channels]
|
|
|
|
*/
|
2002-03-09 23:30:42 +03:00
|
|
|
#if NAURATECONV > 0
|
2002-03-07 17:37:02 +03:00
|
|
|
sc->sc_rconvbuffer_end =
|
|
|
|
auconv_record(&sc->sc_rconv, params,
|
|
|
|
sc->sc_rconvbuffer, outp, cc);
|
2002-03-09 23:30:42 +03:00
|
|
|
#else
|
|
|
|
n = cb->end - outp;
|
|
|
|
if (cc <= n) {
|
|
|
|
memcpy(sc->sc_rconvbuffer, outp, cc);
|
|
|
|
} else {
|
|
|
|
memcpy(sc->sc_rconvbuffer, outp, n);
|
|
|
|
memcpy(sc->sc_rconvbuffer + n, cb->start,
|
|
|
|
cc - n);
|
|
|
|
}
|
|
|
|
sc->sc_rconvbuffer_end = cc;
|
|
|
|
#endif /* !NAURATECONV */
|
2002-03-07 17:37:02 +03:00
|
|
|
/*
|
|
|
|
* The format of data in sc_rconvbuffer is
|
|
|
|
* [sample_rate, hw_encoding, hw_precision, channels]
|
|
|
|
*/
|
|
|
|
outp += cc;
|
|
|
|
if (outp >= cb->end)
|
|
|
|
outp -= cb->end - cb->start;
|
|
|
|
s = splaudio();
|
|
|
|
cb->outp = outp;
|
2002-07-10 06:25:49 +04:00
|
|
|
cb->used -= cc;
|
2002-03-07 17:37:02 +03:00
|
|
|
cb->copying = 0;
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
if (params->sw_code) {
|
|
|
|
cc = sc->sc_rconvbuffer_end;
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (cc % params->factor != 0)
|
|
|
|
printf("audio_read: cc is not aligned"
|
|
|
|
": cc=%d factor=%d\n", cc,
|
|
|
|
params->factor);
|
|
|
|
#endif
|
2002-03-16 11:58:49 +03:00
|
|
|
cc = cc * params->factor_denom / params->factor;
|
2002-03-07 17:37:02 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (cc == 0)
|
2002-03-16 11:58:49 +03:00
|
|
|
printf("audio_read: cc=0 "
|
|
|
|
"factor=%d/%d\n",
|
|
|
|
params->factor,
|
|
|
|
params->factor_denom);
|
2002-03-07 17:37:02 +03:00
|
|
|
#endif
|
2002-03-15 17:55:03 +03:00
|
|
|
params->sw_code(sc->hw_hdl, sc->sc_rconvbuffer,
|
|
|
|
cc);
|
2002-03-07 17:37:02 +03:00
|
|
|
sc->sc_rconvbuffer_end = cc;
|
1997-09-06 05:14:48 +04:00
|
|
|
}
|
2002-03-07 17:37:02 +03:00
|
|
|
sc->sc_rconvbuffer_begin = 0;
|
|
|
|
/*
|
|
|
|
* The format of data in sc_rconvbuffer is
|
|
|
|
* [sample_rate, encoding, precision, channels]
|
|
|
|
*/
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
2002-03-07 17:37:02 +03:00
|
|
|
|
|
|
|
cc = sc->sc_rconvbuffer_end - sc->sc_rconvbuffer_begin;
|
1997-07-27 05:16:32 +04:00
|
|
|
if (uio->uio_resid < cc)
|
|
|
|
cc = uio->uio_resid; /* and no more than we want */
|
1995-02-21 04:35:58 +03:00
|
|
|
|
2002-03-07 17:37:02 +03:00
|
|
|
DPRINTFN(0,("audio_read: buffer=%p[%d] (~ %d), cc=%d\n",
|
|
|
|
sc->sc_rconvbuffer, sc->sc_rconvbuffer_begin,
|
|
|
|
sc->sc_rconvbuffer_end, cc));
|
2000-05-02 04:00:00 +04:00
|
|
|
n = uio->uio_resid;
|
2002-03-07 17:37:02 +03:00
|
|
|
error = uiomove(sc->sc_rconvbuffer + sc->sc_rconvbuffer_begin,
|
|
|
|
cc, uio);
|
2000-05-02 04:00:00 +04:00
|
|
|
cc = n - uio->uio_resid; /* number of bytes actually moved */
|
2002-03-07 17:37:02 +03:00
|
|
|
sc->sc_rconvbuffer_begin += cc;
|
2000-05-02 04:00:00 +04:00
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_clear(struct audio_softc *sc)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
|
|
|
int s = splaudio();
|
|
|
|
|
1997-08-07 03:08:26 +04:00
|
|
|
if (sc->sc_rbus) {
|
1997-08-19 01:19:02 +04:00
|
|
|
audio_wakeup(&sc->sc_rchan);
|
1995-02-21 04:35:58 +03:00
|
|
|
sc->hw_if->halt_input(sc->hw_hdl);
|
|
|
|
sc->sc_rbus = 0;
|
1997-08-07 03:08:26 +04:00
|
|
|
}
|
|
|
|
if (sc->sc_pbus) {
|
1997-08-19 01:19:02 +04:00
|
|
|
audio_wakeup(&sc->sc_wchan);
|
1997-08-07 03:08:26 +04:00
|
|
|
sc->hw_if->halt_output(sc->hw_hdl);
|
1995-02-21 04:35:58 +03:00
|
|
|
sc->sc_pbus = 0;
|
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_calc_blksize(struct audio_softc *sc, int mode)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1997-07-27 05:16:32 +04:00
|
|
|
struct audio_params *parm;
|
|
|
|
struct audio_ringbuffer *rb;
|
|
|
|
|
1997-08-08 04:03:26 +04:00
|
|
|
if (sc->sc_blkset)
|
|
|
|
return;
|
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
if (mode == AUMODE_PLAY) {
|
|
|
|
parm = &sc->sc_pparams;
|
|
|
|
rb = &sc->sc_pr;
|
|
|
|
} else {
|
|
|
|
parm = &sc->sc_rparams;
|
|
|
|
rb = &sc->sc_rr;
|
|
|
|
}
|
2002-03-23 20:17:10 +03:00
|
|
|
|
2003-10-02 11:15:20 +04:00
|
|
|
rb->blksize = parm->hw_sample_rate * audio_blk_ms / 1000 *
|
2002-03-07 17:37:02 +03:00
|
|
|
parm->hw_channels * parm->precision / NBBY *
|
1997-08-04 13:29:51 +04:00
|
|
|
parm->factor;
|
1997-07-27 05:16:32 +04:00
|
|
|
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTF(("audio_calc_blksize: %s blksize=%d\n",
|
2003-10-02 11:15:20 +04:00
|
|
|
mode == AUMODE_PLAY ? "play" : "record", rb->blksize));
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_fill_silence(struct audio_params *params, u_char *p, int n)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1997-07-27 05:16:32 +04:00
|
|
|
u_char auzero0, auzero1 = 0; /* initialize to please gcc */
|
1997-05-07 22:51:31 +04:00
|
|
|
int nfill = 1;
|
1997-07-27 05:16:32 +04:00
|
|
|
|
2002-03-07 17:37:02 +03:00
|
|
|
switch (params->hw_encoding) {
|
1997-03-13 05:19:32 +03:00
|
|
|
case AUDIO_ENCODING_ULAW:
|
2002-03-23 20:17:10 +03:00
|
|
|
auzero0 = 0x7f;
|
1997-03-13 05:19:32 +03:00
|
|
|
break;
|
|
|
|
case AUDIO_ENCODING_ALAW:
|
1997-07-27 05:16:32 +04:00
|
|
|
auzero0 = 0x55;
|
1997-03-13 05:19:32 +03:00
|
|
|
break;
|
1997-10-17 03:57:56 +04:00
|
|
|
case AUDIO_ENCODING_MPEG_L1_STREAM:
|
|
|
|
case AUDIO_ENCODING_MPEG_L1_PACKETS:
|
|
|
|
case AUDIO_ENCODING_MPEG_L1_SYSTEM:
|
|
|
|
case AUDIO_ENCODING_MPEG_L2_STREAM:
|
|
|
|
case AUDIO_ENCODING_MPEG_L2_PACKETS:
|
|
|
|
case AUDIO_ENCODING_MPEG_L2_SYSTEM:
|
1997-03-13 05:19:32 +03:00
|
|
|
case AUDIO_ENCODING_ADPCM: /* is this right XXX */
|
1997-07-15 11:46:04 +04:00
|
|
|
case AUDIO_ENCODING_SLINEAR_LE:
|
|
|
|
case AUDIO_ENCODING_SLINEAR_BE:
|
2001-09-03 22:51:43 +04:00
|
|
|
auzero0 = 0;/* fortunately this works for any number of bits */
|
1997-05-07 22:51:31 +04:00
|
|
|
break;
|
|
|
|
case AUDIO_ENCODING_ULINEAR_LE:
|
|
|
|
case AUDIO_ENCODING_ULINEAR_BE:
|
2002-03-07 17:37:02 +03:00
|
|
|
if (params->hw_precision > 8) {
|
|
|
|
nfill = (params->hw_precision + NBBY - 1)/ NBBY;
|
2001-09-03 22:51:43 +04:00
|
|
|
auzero0 = 0x80;
|
|
|
|
auzero1 = 0;
|
1997-05-07 22:51:31 +04:00
|
|
|
} else
|
1997-07-27 05:16:32 +04:00
|
|
|
auzero0 = 0x80;
|
1997-05-07 22:51:31 +04:00
|
|
|
break;
|
1997-03-13 05:19:32 +03:00
|
|
|
default:
|
1997-10-19 11:41:33 +04:00
|
|
|
DPRINTF(("audio: bad encoding %d\n", params->encoding));
|
1997-07-27 05:16:32 +04:00
|
|
|
auzero0 = 0;
|
1997-03-13 05:19:32 +03:00
|
|
|
break;
|
|
|
|
}
|
1997-05-07 22:51:31 +04:00
|
|
|
if (nfill == 1) {
|
|
|
|
while (--n >= 0)
|
1997-07-27 05:16:32 +04:00
|
|
|
*p++ = auzero0; /* XXX memset */
|
2001-09-03 22:51:43 +04:00
|
|
|
} else /* nfill must no longer be 2 */ {
|
2002-03-07 17:37:02 +03:00
|
|
|
if (params->hw_encoding == AUDIO_ENCODING_ULINEAR_LE) {
|
2001-09-03 22:51:43 +04:00
|
|
|
int k = nfill;
|
|
|
|
while (--k > 0)
|
|
|
|
*p++ = auzero1;
|
|
|
|
n -= nfill - 1;
|
|
|
|
}
|
|
|
|
while (n >= nfill) {
|
2002-09-23 07:44:56 +04:00
|
|
|
int k = nfill;
|
1997-07-27 05:16:32 +04:00
|
|
|
*p++ = auzero0;
|
2001-09-03 22:51:43 +04:00
|
|
|
while (--k > 0)
|
|
|
|
*p++ = auzero1;
|
|
|
|
|
|
|
|
n -= nfill;
|
1997-05-07 22:51:31 +04:00
|
|
|
}
|
2001-09-03 22:51:43 +04:00
|
|
|
if (n-- > 0) /* XXX must be 1 - DIAGNOSTIC check? */
|
|
|
|
*p++ = auzero0;
|
1997-05-07 22:51:31 +04:00
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
1996-03-07 18:00:07 +03:00
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_silence_copyout(struct audio_softc *sc, int n, struct uio *uio)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1997-05-11 04:41:12 +04:00
|
|
|
int error;
|
1997-03-13 05:19:32 +03:00
|
|
|
int k;
|
1997-05-11 04:41:12 +04:00
|
|
|
u_char zerobuf[128];
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-05-11 04:41:12 +04:00
|
|
|
audio_fill_silence(&sc->sc_rparams, zerobuf, sizeof zerobuf);
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-05-11 04:41:12 +04:00
|
|
|
error = 0;
|
2002-03-23 20:17:10 +03:00
|
|
|
while (n > 0 && uio->uio_resid > 0 && !error) {
|
1997-05-11 04:41:12 +04:00
|
|
|
k = min(n, min(uio->uio_resid, sizeof zerobuf));
|
|
|
|
error = uiomove(zerobuf, k, uio);
|
|
|
|
n -= k;
|
|
|
|
}
|
2002-03-23 20:17:10 +03:00
|
|
|
return (error);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_write(struct audio_softc *sc, struct uio *uio, int ioflag)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1997-07-27 05:16:32 +04:00
|
|
|
struct audio_ringbuffer *cb = &sc->sc_pr;
|
|
|
|
u_char *inp, *einp;
|
1999-06-07 23:24:38 +04:00
|
|
|
int saveerror, error, s, n, cc, used;
|
2002-03-07 17:37:02 +03:00
|
|
|
struct audio_params *params;
|
2002-03-16 11:58:49 +03:00
|
|
|
int samples, hw_bits_per_sample, user_bits_per_sample;
|
2002-03-07 17:37:02 +03:00
|
|
|
int input_remain, space;
|
1997-07-27 05:16:32 +04:00
|
|
|
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTFN(2,("audio_write: sc=%p count=%lu used=%d(hi=%d)\n",
|
|
|
|
sc, (unsigned long)uio->uio_resid, sc->sc_pr.used,
|
1998-12-28 01:52:23 +03:00
|
|
|
sc->sc_pr.usedhigh));
|
1997-07-27 05:16:32 +04:00
|
|
|
|
|
|
|
if (cb->mmapped)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
if (uio->uio_resid == 0) {
|
|
|
|
sc->sc_eof++;
|
|
|
|
return 0;
|
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If half-duplex and currently recording, throw away data.
|
|
|
|
*/
|
1997-07-27 05:16:32 +04:00
|
|
|
if (!sc->sc_full_duplex &&
|
1995-07-07 05:52:30 +04:00
|
|
|
(sc->sc_mode & AUMODE_RECORD)) {
|
1995-02-21 04:35:58 +03:00
|
|
|
uio->uio_offset += uio->uio_resid;
|
|
|
|
uio->uio_resid = 0;
|
1995-07-07 05:52:30 +04:00
|
|
|
DPRINTF(("audio_write: half-dpx read busy\n"));
|
1995-02-21 04:35:58 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
if (!(sc->sc_mode & AUMODE_PLAY_ALL) && sc->sc_playdrop > 0) {
|
|
|
|
n = min(sc->sc_playdrop, uio->uio_resid);
|
1997-08-25 02:31:23 +04:00
|
|
|
DPRINTF(("audio_write: playdrop %d\n", n));
|
1997-07-27 05:16:32 +04:00
|
|
|
uio->uio_offset += n;
|
|
|
|
uio->uio_resid -= n;
|
|
|
|
sc->sc_playdrop -= n;
|
|
|
|
if (uio->uio_resid == 0)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-03-07 17:37:02 +03:00
|
|
|
params = &sc->sc_pparams;
|
1998-12-28 01:52:23 +03:00
|
|
|
DPRINTFN(1, ("audio_write: sr=%ld, enc=%d, prec=%d, chan=%d, sw=%p, "
|
|
|
|
"fact=%d\n",
|
2002-03-23 20:17:10 +03:00
|
|
|
sc->sc_pparams.sample_rate, sc->sc_pparams.encoding,
|
|
|
|
sc->sc_pparams.precision, sc->sc_pparams.channels,
|
|
|
|
sc->sc_pparams.sw_code, sc->sc_pparams.factor));
|
1997-08-20 03:49:33 +04:00
|
|
|
|
2002-03-07 17:37:02 +03:00
|
|
|
/*
|
|
|
|
* For some encodings, handle data in sample unit.
|
|
|
|
*/
|
|
|
|
switch (params->hw_encoding) {
|
|
|
|
case AUDIO_ENCODING_SLINEAR_LE:
|
|
|
|
case AUDIO_ENCODING_SLINEAR_BE:
|
|
|
|
case AUDIO_ENCODING_ULINEAR_LE:
|
|
|
|
case AUDIO_ENCODING_ULINEAR_BE:
|
2002-03-16 11:58:49 +03:00
|
|
|
hw_bits_per_sample = params->hw_channels * params->precision
|
2002-03-07 17:37:02 +03:00
|
|
|
* params->factor;
|
2002-03-16 11:58:49 +03:00
|
|
|
user_bits_per_sample = params->channels * params->precision;
|
2002-03-07 17:37:02 +03:00
|
|
|
break;
|
|
|
|
default:
|
2002-03-16 11:58:49 +03:00
|
|
|
hw_bits_per_sample = 8 * params->factor / params->factor_denom;
|
|
|
|
user_bits_per_sample = 8;
|
2002-03-07 17:37:02 +03:00
|
|
|
}
|
|
|
|
#ifdef DIAGNOSTIC
|
2002-03-16 11:58:49 +03:00
|
|
|
if (hw_bits_per_sample > MAX_SAMPLE_SIZE * 8) {
|
2002-03-07 17:37:02 +03:00
|
|
|
printf("audio_write(): Invalid sample size: cur=%d max=%d\n",
|
2002-03-16 11:58:49 +03:00
|
|
|
hw_bits_per_sample / 8, MAX_SAMPLE_SIZE);
|
2002-03-07 17:37:02 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
space = ((params->hw_sample_rate / params->sample_rate) + 1)
|
2002-03-16 11:58:49 +03:00
|
|
|
* hw_bits_per_sample / 8;
|
1997-07-27 05:16:32 +04:00
|
|
|
error = 0;
|
2002-03-07 17:37:02 +03:00
|
|
|
while ((input_remain = uio->uio_resid + sc->sc_input_fragment_length) > 0
|
|
|
|
&& !error) {
|
1997-09-06 05:14:48 +04:00
|
|
|
s = splaudio();
|
2002-03-16 11:58:49 +03:00
|
|
|
if (input_remain < user_bits_per_sample / 8) {
|
2002-03-07 17:37:02 +03:00
|
|
|
n = uio->uio_resid;
|
|
|
|
DPRINTF(("audio_write: fragment uiomove length=%d\n", n));
|
|
|
|
error = uiomove(sc->sc_input_fragment
|
|
|
|
+ sc->sc_input_fragment_length,
|
|
|
|
n, uio);
|
|
|
|
if (!error)
|
|
|
|
sc->sc_input_fragment_length += n;
|
|
|
|
splx(s);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
while (cb->used + space >= cb->usedhigh) {
|
1998-12-28 01:52:23 +03:00
|
|
|
DPRINTFN(2, ("audio_write: sleep used=%d lowat=%d "
|
2002-03-23 20:17:10 +03:00
|
|
|
"hiwat=%d\n",
|
1998-12-28 01:52:23 +03:00
|
|
|
cb->used, cb->usedlow, cb->usedhigh));
|
1997-09-06 05:14:48 +04:00
|
|
|
if (ioflag & IO_NDELAY) {
|
|
|
|
splx(s);
|
1997-07-27 05:16:32 +04:00
|
|
|
return (EWOULDBLOCK);
|
1997-09-06 05:14:48 +04:00
|
|
|
}
|
1998-05-18 22:27:43 +04:00
|
|
|
error = audio_sleep(&sc->sc_wchan, "aud_wr");
|
1999-09-09 14:24:39 +04:00
|
|
|
if (sc->sc_dying)
|
|
|
|
error = EIO;
|
1997-09-06 05:14:48 +04:00
|
|
|
if (error) {
|
|
|
|
splx(s);
|
1998-12-28 01:52:23 +03:00
|
|
|
return (error);
|
1997-09-06 05:14:48 +04:00
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1997-07-27 05:16:32 +04:00
|
|
|
used = cb->used;
|
|
|
|
inp = cb->inp;
|
|
|
|
cb->copying = 1;
|
1995-02-21 04:35:58 +03:00
|
|
|
splx(s);
|
2002-03-23 20:17:10 +03:00
|
|
|
cc = cb->usedhigh - used; /* maximum to write */
|
2002-03-07 17:37:02 +03:00
|
|
|
/* cc may be greater than the size of the ring buffer */
|
|
|
|
if (cc > cb->end - cb->start)
|
|
|
|
cc = cb->end - cb->start;
|
|
|
|
|
|
|
|
/* cc: # of bytes we can write to the ring buffer */
|
2002-03-16 11:58:49 +03:00
|
|
|
samples = cc * 8 / hw_bits_per_sample;
|
2002-03-07 17:37:02 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (samples == 0)
|
|
|
|
printf("audio_write: samples (cc/hw_bps) == 0\n");
|
|
|
|
#endif
|
|
|
|
/* samples: # of samples we can write to the ring buffer */
|
|
|
|
samples = samples * params->sample_rate / params->hw_sample_rate;
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (samples == 0)
|
|
|
|
printf("audio_write: samples (rate/hw_rate) == 0 "
|
|
|
|
"usedhigh-used=%d cc/hw_bps=%d/%d "
|
|
|
|
"rate/hw_rate=%ld/%ld space=%d\n",
|
|
|
|
cb->usedhigh - cb->used, cc,
|
2002-03-16 11:58:49 +03:00
|
|
|
hw_bits_per_sample / 8, params->sample_rate,
|
2002-03-07 17:37:02 +03:00
|
|
|
params->hw_sample_rate, space);
|
|
|
|
#endif
|
|
|
|
/* samples: # of samples in source data */
|
2002-03-16 11:58:49 +03:00
|
|
|
cc = samples * user_bits_per_sample / 8;
|
2002-03-07 17:37:02 +03:00
|
|
|
/* cc: # of bytes in source data */
|
|
|
|
if (input_remain < cc) /* and no more than we have */
|
2002-03-16 11:58:49 +03:00
|
|
|
cc = (input_remain * 8 / user_bits_per_sample)
|
|
|
|
* user_bits_per_sample / 8;
|
2002-03-07 17:37:02 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (cc == 0)
|
|
|
|
printf("audio_write: cc == 0\n");
|
|
|
|
#endif
|
2002-03-23 20:17:10 +03:00
|
|
|
if (cc * params->factor / params->factor_denom
|
|
|
|
> sc->sc_pconvbuffer_size) {
|
2002-03-16 11:58:49 +03:00
|
|
|
/*
|
|
|
|
* cc = (pconv / factor / user_bps ) * user_bps
|
|
|
|
*/
|
|
|
|
cc = (sc->sc_pconvbuffer_size * params->factor_denom
|
|
|
|
* 8 / params->factor / user_bits_per_sample)
|
|
|
|
* user_bits_per_sample / 8;
|
1997-08-04 13:29:51 +04:00
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-08-04 13:29:51 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
2002-03-23 20:17:10 +03:00
|
|
|
/*
|
1997-08-04 13:29:51 +04:00
|
|
|
* This should never happen since the block size and and
|
2002-03-23 20:17:10 +03:00
|
|
|
* block pointers are always nicely aligned.
|
1997-08-04 13:29:51 +04:00
|
|
|
*/
|
|
|
|
if (cc == 0) {
|
2002-03-16 11:58:49 +03:00
|
|
|
printf("audio_write: cc == 0, swcode=%p, factor=%d "
|
|
|
|
"remain=%d u_bps=%d hw_bps=%d\n",
|
|
|
|
sc->sc_pparams.sw_code, sc->sc_pparams.factor,
|
|
|
|
input_remain, user_bits_per_sample,
|
|
|
|
hw_bits_per_sample);
|
1997-08-20 03:49:33 +04:00
|
|
|
cb->copying = 0;
|
1997-08-04 13:29:51 +04:00
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
#endif
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTFN(1, ("audio_write: uiomove cc=%d inp=%p, left=%lu\n",
|
|
|
|
cc, inp, (unsigned long)uio->uio_resid));
|
2002-03-07 17:37:02 +03:00
|
|
|
memcpy(sc->sc_pconvbuffer, sc->sc_input_fragment,
|
|
|
|
sc->sc_input_fragment_length);
|
|
|
|
cc -= sc->sc_input_fragment_length;
|
1997-07-27 05:16:32 +04:00
|
|
|
n = uio->uio_resid;
|
2002-03-07 17:37:02 +03:00
|
|
|
error = uiomove(sc->sc_pconvbuffer + sc->sc_input_fragment_length,
|
|
|
|
cc, uio);
|
|
|
|
if (cc != n - uio->uio_resid) {
|
|
|
|
printf("audio_write: uiomove didn't move requested "
|
2002-03-08 05:30:54 +03:00
|
|
|
"amount: requested=%d, actual=%ld\n",
|
|
|
|
cc, (long)n - uio->uio_resid);
|
2002-03-07 17:37:02 +03:00
|
|
|
}
|
|
|
|
/* number of bytes actually moved */
|
|
|
|
cc = sc->sc_input_fragment_length + n - uio->uio_resid;
|
|
|
|
sc->sc_input_fragment_length = 0;
|
1995-07-07 05:52:30 +04:00
|
|
|
#ifdef AUDIO_DEBUG
|
1997-07-27 05:16:32 +04:00
|
|
|
if (error)
|
2002-03-23 20:17:10 +03:00
|
|
|
printf("audio_write:(1) uiomove failed %d; cc=%d "
|
1998-12-28 01:52:23 +03:00
|
|
|
"inp=%p\n", error, cc, inp);
|
1995-02-21 04:35:58 +03:00
|
|
|
#endif
|
2002-03-23 20:17:10 +03:00
|
|
|
/*
|
1997-08-04 13:29:51 +04:00
|
|
|
* Continue even if uiomove() failed because we may have
|
|
|
|
* gotten a partial block.
|
|
|
|
*/
|
2002-03-07 17:37:02 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The format of data in sc_pconvbuffer is:
|
|
|
|
* [sample_rate, encoding, precision, channels]
|
|
|
|
*/
|
1997-08-04 13:29:51 +04:00
|
|
|
if (sc->sc_pparams.sw_code) {
|
2002-03-07 17:37:02 +03:00
|
|
|
sc->sc_pparams.sw_code(sc->hw_hdl,
|
|
|
|
sc->sc_pconvbuffer, cc);
|
1997-08-04 13:29:51 +04:00
|
|
|
/* Adjust count after the expansion. */
|
2002-03-23 20:17:10 +03:00
|
|
|
cc = cc * sc->sc_pparams.factor
|
|
|
|
/ sc->sc_pparams.factor_denom;
|
1998-04-28 13:07:12 +04:00
|
|
|
DPRINTFN(1, ("audio_write: expanded cc=%d\n", cc));
|
1997-08-04 13:29:51 +04:00
|
|
|
}
|
2002-03-07 17:37:02 +03:00
|
|
|
/*
|
|
|
|
* The format of data in sc_pconvbuffer is:
|
|
|
|
* [sample_rate, hw_encoding, hw_precision, channels]
|
|
|
|
*/
|
2002-03-09 23:30:42 +03:00
|
|
|
#if NAURATECONV > 0
|
2002-03-07 17:37:02 +03:00
|
|
|
cc = auconv_play(&sc->sc_pconv, params, inp,
|
|
|
|
sc->sc_pconvbuffer, cc);
|
2002-03-09 23:30:42 +03:00
|
|
|
#else
|
|
|
|
n = cb->end - inp;
|
|
|
|
if (cc <= n) {
|
|
|
|
memcpy(inp, sc->sc_pconvbuffer, cc);
|
|
|
|
} else {
|
|
|
|
memcpy(inp, sc->sc_pconvbuffer, n);
|
|
|
|
memcpy(cb->start, sc->sc_pconvbuffer + n, cc - n);
|
|
|
|
}
|
|
|
|
#endif /* !NAURATECONV */
|
2002-03-07 17:37:02 +03:00
|
|
|
/*
|
|
|
|
* The format of data in inp is:
|
|
|
|
* [hw_sample_rate, hw_encoding, hw_precision, hw_channels]
|
|
|
|
* cc is the size of data actually written to inp.
|
|
|
|
*/
|
1997-07-27 05:16:32 +04:00
|
|
|
|
|
|
|
einp = cb->inp + cc;
|
|
|
|
if (einp >= cb->end)
|
2002-03-07 17:37:02 +03:00
|
|
|
einp -= cb->end - cb->start; /* not cb->bufsize */
|
1995-02-21 04:35:58 +03:00
|
|
|
|
|
|
|
s = splaudio();
|
1997-07-27 05:16:32 +04:00
|
|
|
/*
|
|
|
|
* This is a very suboptimal way of keeping track of
|
|
|
|
* silence in the buffer, but it is simple.
|
|
|
|
*/
|
|
|
|
sc->sc_sil_count = 0;
|
|
|
|
|
|
|
|
cb->inp = einp;
|
|
|
|
cb->used += cc;
|
2002-03-23 20:17:10 +03:00
|
|
|
/*
|
1998-12-28 01:52:23 +03:00
|
|
|
* If the interrupt routine wants the last block filled AND
|
1997-07-27 05:16:32 +04:00
|
|
|
* the copy did not fill the last block completely it needs to
|
|
|
|
* be padded.
|
|
|
|
*/
|
|
|
|
if (cb->needfill &&
|
2002-03-23 20:17:10 +03:00
|
|
|
(inp - cb->start) / cb->blksize ==
|
1997-07-27 05:16:32 +04:00
|
|
|
(einp - cb->start) / cb->blksize) {
|
1998-12-28 01:52:23 +03:00
|
|
|
/* Figure out how many bytes to a block boundary. */
|
1997-07-27 05:16:32 +04:00
|
|
|
cc = cb->blksize - (einp - cb->start) % cb->blksize;
|
|
|
|
DPRINTF(("audio_write: partial fill %d\n", cc));
|
|
|
|
} else
|
|
|
|
cc = 0;
|
|
|
|
cb->needfill = 0;
|
|
|
|
cb->copying = 0;
|
1999-06-07 23:24:38 +04:00
|
|
|
if (!sc->sc_pbus && !cb->pause) {
|
|
|
|
saveerror = error;
|
|
|
|
error = audiostartp(sc);
|
|
|
|
if (saveerror != 0) {
|
2001-09-16 20:34:23 +04:00
|
|
|
/* Report the first error that occurred. */
|
1999-06-07 23:24:38 +04:00
|
|
|
error = saveerror;
|
|
|
|
}
|
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
splx(s);
|
1998-12-28 01:52:23 +03:00
|
|
|
if (cc != 0) {
|
1998-04-28 13:07:12 +04:00
|
|
|
DPRINTFN(1, ("audio_write: fill %d\n", cc));
|
1997-07-27 05:16:32 +04:00
|
|
|
audio_fill_silence(&sc->sc_pparams, einp, cc);
|
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_ioctl(struct audio_softc *sc, u_long cmd, caddr_t addr, int flag,
|
2003-06-30 02:28:00 +04:00
|
|
|
struct proc *p)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
|
|
|
struct audio_hw_if *hw = sc->hw_if;
|
1997-07-27 05:16:32 +04:00
|
|
|
struct audio_offset *ao;
|
1997-08-19 01:19:02 +04:00
|
|
|
int error = 0, s, offs, fd;
|
2003-10-02 11:15:20 +04:00
|
|
|
u_long stamp;
|
2002-03-23 20:17:10 +03:00
|
|
|
int rbus, pbus;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
2000-03-01 03:44:35 +03:00
|
|
|
DPRINTF(("audio_ioctl(%lu,'%c',%lu)\n",
|
2002-03-23 20:17:10 +03:00
|
|
|
IOCPARM_LEN(cmd), (char)IOCGROUP(cmd), cmd&0xff));
|
1995-02-21 04:35:58 +03:00
|
|
|
switch (cmd) {
|
1997-08-01 21:04:00 +04:00
|
|
|
case FIONBIO:
|
|
|
|
/* All handled in the upper FS layer. */
|
|
|
|
break;
|
1997-08-11 05:38:12 +04:00
|
|
|
|
2003-05-26 16:43:35 +04:00
|
|
|
case FIONREAD:
|
|
|
|
*(int *)addr = sc->sc_rr.used;
|
|
|
|
break;
|
|
|
|
|
1996-02-20 13:00:31 +03:00
|
|
|
case FIOASYNC:
|
|
|
|
if (*(int *)addr) {
|
1997-08-11 05:38:12 +04:00
|
|
|
if (sc->sc_async_audio)
|
1996-02-20 13:00:31 +03:00
|
|
|
return (EBUSY);
|
2003-06-30 02:28:00 +04:00
|
|
|
sc->sc_async_audio = p;
|
|
|
|
DPRINTF(("audio_ioctl: FIOASYNC %p\n", p));
|
1996-02-20 13:00:31 +03:00
|
|
|
} else
|
1997-08-11 05:38:12 +04:00
|
|
|
sc->sc_async_audio = 0;
|
1996-02-20 13:00:31 +03:00
|
|
|
break;
|
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
case AUDIO_FLUSH:
|
|
|
|
DPRINTF(("AUDIO_FLUSH\n"));
|
2002-03-23 20:17:10 +03:00
|
|
|
rbus = sc->sc_rbus;
|
|
|
|
pbus = sc->sc_pbus;
|
1995-02-21 04:35:58 +03:00
|
|
|
audio_clear(sc);
|
|
|
|
s = splaudio();
|
1997-08-25 02:31:23 +04:00
|
|
|
error = audio_initbufs(sc);
|
|
|
|
if (error) {
|
|
|
|
splx(s);
|
|
|
|
return error;
|
|
|
|
}
|
1997-12-03 04:01:19 +03:00
|
|
|
if ((sc->sc_mode & AUMODE_PLAY) && !sc->sc_pbus && pbus)
|
1997-08-25 02:31:23 +04:00
|
|
|
error = audiostartp(sc);
|
|
|
|
if (!error &&
|
1997-12-03 04:01:19 +03:00
|
|
|
(sc->sc_mode & AUMODE_RECORD) && !sc->sc_rbus && rbus)
|
1997-08-25 02:31:23 +04:00
|
|
|
error = audiostartr(sc);
|
1995-02-21 04:35:58 +03:00
|
|
|
splx(s);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
1996-02-17 05:28:56 +03:00
|
|
|
* Number of read (write) samples dropped. We don't know where or
|
1995-02-21 04:35:58 +03:00
|
|
|
* when they were dropped.
|
|
|
|
*/
|
|
|
|
case AUDIO_RERROR:
|
1997-07-27 05:16:32 +04:00
|
|
|
*(int *)addr = sc->sc_rr.drops;
|
1996-02-17 05:28:56 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AUDIO_PERROR:
|
1997-07-27 05:16:32 +04:00
|
|
|
*(int *)addr = sc->sc_pr.drops;
|
1995-02-21 04:35:58 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
1997-07-27 05:16:32 +04:00
|
|
|
* Offsets into buffer.
|
1995-02-21 04:35:58 +03:00
|
|
|
*/
|
1997-07-27 05:16:32 +04:00
|
|
|
case AUDIO_GETIOFFS:
|
2003-10-02 11:15:20 +04:00
|
|
|
ao = (struct audio_offset *)addr;
|
1995-02-21 04:35:58 +03:00
|
|
|
s = splaudio();
|
1997-07-27 05:16:32 +04:00
|
|
|
/* figure out where next DMA will start */
|
2003-10-02 11:15:20 +04:00
|
|
|
stamp = sc->sc_rr.stamp;
|
|
|
|
offs = sc->sc_rr.inp - sc->sc_rr.start;
|
1995-02-21 04:35:58 +03:00
|
|
|
splx(s);
|
2003-10-02 11:15:20 +04:00
|
|
|
ao->samples = stamp;
|
|
|
|
ao->deltablks =
|
|
|
|
(stamp / sc->sc_rr.blksize) -
|
|
|
|
(sc->sc_rr.stamp_last / sc->sc_rr.blksize);
|
|
|
|
sc->sc_rr.stamp_last = stamp;
|
|
|
|
ao->offset = offs;
|
1995-02-21 04:35:58 +03:00
|
|
|
break;
|
1997-07-27 05:16:32 +04:00
|
|
|
|
|
|
|
case AUDIO_GETOOFFS:
|
2003-10-02 11:15:20 +04:00
|
|
|
ao = (struct audio_offset *)addr;
|
1997-07-27 05:16:32 +04:00
|
|
|
s = splaudio();
|
|
|
|
/* figure out where next DMA will start */
|
2003-10-02 11:15:20 +04:00
|
|
|
stamp = sc->sc_pr.stamp;
|
1997-07-27 05:16:32 +04:00
|
|
|
offs = sc->sc_pr.outp - sc->sc_pr.start + sc->sc_pr.blksize;
|
2003-10-02 11:15:20 +04:00
|
|
|
splx(s);
|
|
|
|
ao->samples = stamp;
|
|
|
|
ao->deltablks =
|
|
|
|
(stamp / sc->sc_pr.blksize) -
|
|
|
|
(sc->sc_pr.stamp_last / sc->sc_pr.blksize);
|
|
|
|
sc->sc_pr.stamp_last = stamp;
|
1997-07-27 05:16:32 +04:00
|
|
|
if (sc->sc_pr.start + offs >= sc->sc_pr.end)
|
|
|
|
offs = 0;
|
|
|
|
ao->offset = offs;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* How many bytes will elapse until mike hears the first
|
|
|
|
* sample of what we write next?
|
|
|
|
*/
|
|
|
|
case AUDIO_WSEEK:
|
|
|
|
*(u_long *)addr = sc->sc_rr.used;
|
|
|
|
break;
|
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
case AUDIO_SETINFO:
|
1997-08-06 11:39:59 +04:00
|
|
|
DPRINTF(("AUDIO_SETINFO mode=0x%x\n", sc->sc_mode));
|
2003-04-25 07:02:11 +04:00
|
|
|
error = audiosetinfo(sc, (struct audio_info *)addr);
|
1995-02-21 04:35:58 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AUDIO_GETINFO:
|
|
|
|
DPRINTF(("AUDIO_GETINFO\n"));
|
|
|
|
error = audiogetinfo(sc, (struct audio_info *)addr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AUDIO_DRAIN:
|
|
|
|
DPRINTF(("AUDIO_DRAIN\n"));
|
|
|
|
error = audio_drain(sc);
|
|
|
|
if (!error && hw->drain)
|
|
|
|
error = hw->drain(sc->hw_hdl);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AUDIO_GETDEV:
|
|
|
|
DPRINTF(("AUDIO_GETDEV\n"));
|
|
|
|
error = hw->getdev(sc->hw_hdl, (audio_device_t *)addr);
|
|
|
|
break;
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
case AUDIO_GETENC:
|
|
|
|
DPRINTF(("AUDIO_GETENC\n"));
|
2002-03-23 20:17:10 +03:00
|
|
|
error =
|
1998-12-28 01:52:23 +03:00
|
|
|
hw->query_encoding(sc->hw_hdl, (struct audio_encoding *)addr);
|
1995-02-21 04:35:58 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AUDIO_GETFD:
|
|
|
|
DPRINTF(("AUDIO_GETFD\n"));
|
1997-10-11 15:16:28 +04:00
|
|
|
*(int *)addr = sc->sc_full_duplex;
|
1995-02-21 04:35:58 +03:00
|
|
|
break;
|
1997-10-11 15:16:28 +04:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
case AUDIO_SETFD:
|
|
|
|
DPRINTF(("AUDIO_SETFD\n"));
|
1997-08-19 01:19:02 +04:00
|
|
|
fd = *(int *)addr;
|
1997-08-01 02:33:08 +04:00
|
|
|
if (hw->get_props(sc->hw_hdl) & AUDIO_PROP_FULLDUPLEX) {
|
1997-07-28 03:51:48 +04:00
|
|
|
if (hw->setfd)
|
1997-08-19 01:19:02 +04:00
|
|
|
error = hw->setfd(sc->hw_hdl, fd);
|
1997-07-28 03:51:48 +04:00
|
|
|
else
|
|
|
|
error = 0;
|
|
|
|
if (!error)
|
1997-08-19 01:19:02 +04:00
|
|
|
sc->sc_full_duplex = fd;
|
1997-07-28 03:51:48 +04:00
|
|
|
} else {
|
1997-08-19 01:19:02 +04:00
|
|
|
if (fd)
|
1997-07-28 03:51:48 +04:00
|
|
|
error = ENOTTY;
|
|
|
|
else
|
|
|
|
error = 0;
|
|
|
|
}
|
1997-07-27 05:16:32 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AUDIO_GETPROPS:
|
|
|
|
DPRINTF(("AUDIO_GETPROPS\n"));
|
1997-08-01 02:33:08 +04:00
|
|
|
*(int *)addr = hw->get_props(sc->hw_hdl);
|
1995-02-21 04:35:58 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2001-10-03 04:04:47 +04:00
|
|
|
if (hw->dev_ioctl) {
|
2003-06-30 02:28:00 +04:00
|
|
|
error = hw->dev_ioctl(sc->hw_hdl, cmd, addr, flag, p);
|
2001-10-03 04:04:47 +04:00
|
|
|
} else {
|
|
|
|
DPRINTF(("audio_ioctl: unknown ioctl\n"));
|
|
|
|
error = EINVAL;
|
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
break;
|
|
|
|
}
|
2000-03-01 03:44:35 +03:00
|
|
|
DPRINTF(("audio_ioctl(%lu,'%c',%lu) result %d\n",
|
2002-03-23 20:17:10 +03:00
|
|
|
IOCPARM_LEN(cmd), (char)IOCGROUP(cmd), cmd&0xff, error));
|
1995-02-21 04:35:58 +03:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
audio_poll(struct audio_softc *sc, int events, struct proc *p)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1996-09-07 16:40:22 +04:00
|
|
|
int revents = 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
int s = splaudio();
|
|
|
|
|
1997-08-25 02:31:23 +04:00
|
|
|
DPRINTF(("audio_poll: events=0x%x mode=%d\n", events, sc->sc_mode));
|
1995-02-21 04:35:58 +03:00
|
|
|
|
2003-04-25 07:02:11 +04:00
|
|
|
if (events & (POLLIN | POLLRDNORM)) {
|
2002-06-02 06:00:30 +04:00
|
|
|
/*
|
|
|
|
* If half duplex and playing, audio_read() will generate
|
|
|
|
* silence at the play rate; poll for silence being
|
|
|
|
* available. Otherwise, poll for recorded sound.
|
|
|
|
*/
|
|
|
|
if ((!sc->sc_full_duplex && (sc->sc_mode & AUMODE_PLAY)) ?
|
2002-03-23 20:17:10 +03:00
|
|
|
sc->sc_pr.stamp > sc->sc_wstamp :
|
1997-08-25 02:31:23 +04:00
|
|
|
sc->sc_rr.used > sc->sc_rr.usedlow)
|
1996-09-07 16:40:22 +04:00
|
|
|
revents |= events & (POLLIN | POLLRDNORM);
|
2003-04-25 07:02:11 +04:00
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
|
2003-04-25 07:02:11 +04:00
|
|
|
if (events & (POLLOUT | POLLWRNORM)) {
|
2002-06-02 06:00:30 +04:00
|
|
|
/*
|
|
|
|
* If half duplex and recording, audio_write() will throw
|
|
|
|
* away play data, which means we are always ready to write.
|
|
|
|
* Otherwise, poll for play buffer being below its low water
|
|
|
|
* mark.
|
|
|
|
*/
|
|
|
|
if ((!sc->sc_full_duplex && (sc->sc_mode & AUMODE_RECORD)) ||
|
1997-08-25 02:31:23 +04:00
|
|
|
sc->sc_pr.used <= sc->sc_pr.usedlow)
|
1996-09-07 16:40:22 +04:00
|
|
|
revents |= events & (POLLOUT | POLLWRNORM);
|
2003-04-25 07:02:11 +04:00
|
|
|
}
|
1996-09-07 16:40:22 +04:00
|
|
|
|
|
|
|
if (revents == 0) {
|
|
|
|
if (events & (POLLIN | POLLRDNORM))
|
2003-06-30 02:28:00 +04:00
|
|
|
selrecord(p, &sc->sc_rsel);
|
1996-09-07 16:40:22 +04:00
|
|
|
|
|
|
|
if (events & (POLLOUT | POLLWRNORM))
|
2003-06-30 02:28:00 +04:00
|
|
|
selrecord(p, &sc->sc_wsel);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1996-09-07 16:40:22 +04:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
splx(s);
|
1996-09-07 16:40:22 +04:00
|
|
|
return (revents);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
2002-10-23 13:10:23 +04:00
|
|
|
static void
|
|
|
|
filt_audiordetach(struct knote *kn)
|
|
|
|
{
|
|
|
|
struct audio_softc *sc = kn->kn_hook;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
s = splaudio();
|
2002-11-26 21:49:40 +03:00
|
|
|
SLIST_REMOVE(&sc->sc_rsel.sel_klist, kn, knote, kn_selnext);
|
2002-10-23 13:10:23 +04:00
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
filt_audioread(struct knote *kn, long hint)
|
|
|
|
{
|
|
|
|
struct audio_softc *sc = kn->kn_hook;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
/* XXXLUKEM (thorpej): please make sure this is right */
|
|
|
|
|
|
|
|
s = splaudio();
|
|
|
|
if (sc->sc_mode & AUMODE_PLAY)
|
|
|
|
kn->kn_data = sc->sc_pr.stamp - sc->sc_wstamp;
|
|
|
|
else
|
|
|
|
kn->kn_data = sc->sc_rr.used - sc->sc_rr.usedlow;
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
return (kn->kn_data > 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct filterops audioread_filtops =
|
|
|
|
{ 1, NULL, filt_audiordetach, filt_audioread };
|
|
|
|
|
|
|
|
static void
|
|
|
|
filt_audiowdetach(struct knote *kn)
|
|
|
|
{
|
|
|
|
struct audio_softc *sc = kn->kn_hook;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
s = splaudio();
|
2002-11-26 21:49:40 +03:00
|
|
|
SLIST_REMOVE(&sc->sc_wsel.sel_klist, kn, knote, kn_selnext);
|
2002-10-23 13:10:23 +04:00
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
filt_audiowrite(struct knote *kn, long hint)
|
|
|
|
{
|
|
|
|
struct audio_softc *sc = kn->kn_hook;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
/* XXXLUKEM (thorpej): please make sure this is right */
|
|
|
|
|
|
|
|
s = splaudio();
|
|
|
|
kn->kn_data = sc->sc_pr.usedlow - sc->sc_pr.used;
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
return (kn->kn_data > 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct filterops audiowrite_filtops =
|
|
|
|
{ 1, NULL, filt_audiowdetach, filt_audiowrite };
|
|
|
|
|
|
|
|
int
|
|
|
|
audio_kqfilter(struct audio_softc *sc, struct knote *kn)
|
|
|
|
{
|
|
|
|
struct klist *klist;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
switch (kn->kn_filter) {
|
|
|
|
case EVFILT_READ:
|
2002-11-26 21:49:40 +03:00
|
|
|
klist = &sc->sc_rsel.sel_klist;
|
2002-10-23 13:10:23 +04:00
|
|
|
kn->kn_fop = &audioread_filtops;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EVFILT_WRITE:
|
2002-11-26 21:49:40 +03:00
|
|
|
klist = &sc->sc_wsel.sel_klist;
|
2002-10-23 13:10:23 +04:00
|
|
|
kn->kn_fop = &audiowrite_filtops;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
kn->kn_hook = sc;
|
|
|
|
|
|
|
|
s = splaudio();
|
|
|
|
SLIST_INSERT_HEAD(klist, kn, kn_selnext);
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2000-06-26 08:55:19 +04:00
|
|
|
paddr_t
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_mmap(struct audio_softc *sc, off_t off, int prot)
|
1996-09-02 01:33:43 +04:00
|
|
|
{
|
1997-07-27 05:16:32 +04:00
|
|
|
struct audio_hw_if *hw = sc->hw_if;
|
|
|
|
struct audio_ringbuffer *cb;
|
1999-09-09 14:24:39 +04:00
|
|
|
int s;
|
1997-07-27 05:16:32 +04:00
|
|
|
|
2000-07-19 17:44:24 +04:00
|
|
|
DPRINTF(("audio_mmap: off=%lld, prot=%d\n", (long long)off, prot));
|
1997-07-27 05:16:32 +04:00
|
|
|
|
1997-08-01 02:33:08 +04:00
|
|
|
if (!(hw->get_props(sc->hw_hdl) & AUDIO_PROP_MMAP) || !hw->mappage)
|
1997-07-29 00:56:05 +04:00
|
|
|
return -1;
|
1997-07-27 05:16:32 +04:00
|
|
|
#if 0
|
|
|
|
/* XXX
|
|
|
|
* The idea here was to use the protection to determine if
|
|
|
|
* we are mapping the read or write buffer, but it fails.
|
|
|
|
* The VM system is broken in (at least) two ways.
|
|
|
|
* 1) If you map memory VM_PROT_WRITE you SIGSEGV
|
|
|
|
* when writing to it, so VM_PROT_READ|VM_PROT_WRITE
|
|
|
|
* has to be used for mmapping the play buffer.
|
|
|
|
* 2) Even if calling mmap() with VM_PROT_READ|VM_PROT_WRITE
|
|
|
|
* audio_mmap will get called at some point with VM_PROT_READ
|
|
|
|
* only.
|
|
|
|
* So, alas, we always map the play buffer for now.
|
|
|
|
*/
|
|
|
|
if (prot == (VM_PROT_READ|VM_PROT_WRITE) ||
|
|
|
|
prot == VM_PROT_WRITE)
|
|
|
|
cb = &sc->sc_pr;
|
|
|
|
else if (prot == VM_PROT_READ)
|
|
|
|
cb = &sc->sc_rr;
|
|
|
|
else
|
1997-07-29 00:56:05 +04:00
|
|
|
return -1;
|
1997-07-27 05:16:32 +04:00
|
|
|
#else
|
|
|
|
cb = &sc->sc_pr;
|
|
|
|
#endif
|
1996-09-02 01:33:43 +04:00
|
|
|
|
1998-11-19 18:38:20 +03:00
|
|
|
if ((u_int)off >= cb->bufsize)
|
1997-07-29 00:56:05 +04:00
|
|
|
return -1;
|
1997-07-27 05:16:32 +04:00
|
|
|
if (!cb->mmapped) {
|
|
|
|
cb->mmapped = 1;
|
|
|
|
if (cb == &sc->sc_pr) {
|
2002-03-23 20:17:10 +03:00
|
|
|
audio_fill_silence(&sc->sc_pparams, cb->start,
|
1998-12-28 01:52:23 +03:00
|
|
|
cb->bufsize);
|
1997-07-27 05:16:32 +04:00
|
|
|
s = splaudio();
|
|
|
|
if (!sc->sc_pbus)
|
1997-08-25 02:31:23 +04:00
|
|
|
(void)audiostartp(sc);
|
1997-07-27 05:16:32 +04:00
|
|
|
splx(s);
|
|
|
|
} else {
|
|
|
|
s = splaudio();
|
|
|
|
if (!sc->sc_rbus)
|
1997-08-25 02:31:23 +04:00
|
|
|
(void)audiostartr(sc);
|
1997-07-27 05:16:32 +04:00
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-07-29 00:56:05 +04:00
|
|
|
return hw->mappage(sc->hw_hdl, cb->start, off, prot);
|
1996-09-02 01:33:43 +04:00
|
|
|
}
|
|
|
|
|
1997-08-25 02:31:23 +04:00
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audiostartr(struct audio_softc *sc)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1996-03-07 18:00:07 +03:00
|
|
|
int error;
|
2002-03-23 20:17:10 +03:00
|
|
|
|
|
|
|
DPRINTF(("audiostartr: start=%p used=%d(hi=%d) mmapped=%d\n",
|
|
|
|
sc->sc_rr.start, sc->sc_rr.used, sc->sc_rr.usedhigh,
|
1997-07-27 05:16:32 +04:00
|
|
|
sc->sc_rr.mmapped));
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1998-08-10 00:28:07 +04:00
|
|
|
if (sc->hw_if->trigger_input)
|
|
|
|
error = sc->hw_if->trigger_input(sc->hw_hdl, sc->sc_rr.start,
|
|
|
|
sc->sc_rr.end, sc->sc_rr.blksize,
|
|
|
|
audio_rint, (void *)sc, &sc->sc_rparams);
|
|
|
|
else
|
2002-03-23 20:17:10 +03:00
|
|
|
error = sc->hw_if->start_input(sc->hw_hdl, sc->sc_rr.start,
|
1998-08-10 00:28:07 +04:00
|
|
|
sc->sc_rr.blksize, audio_rint, (void *)sc);
|
1996-03-07 18:00:07 +03:00
|
|
|
if (error) {
|
|
|
|
DPRINTF(("audiostartr failed: %d\n", error));
|
1997-08-25 02:31:23 +04:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
sc->sc_rbus = 1;
|
|
|
|
return 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
1997-08-25 02:31:23 +04:00
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audiostartp(struct audio_softc *sc)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1996-03-07 18:00:07 +03:00
|
|
|
int error;
|
2002-03-23 20:17:10 +03:00
|
|
|
|
|
|
|
DPRINTF(("audiostartp: start=%p used=%d(hi=%d) mmapped=%d\n",
|
1997-07-27 05:16:32 +04:00
|
|
|
sc->sc_pr.start, sc->sc_pr.used, sc->sc_pr.usedhigh,
|
|
|
|
sc->sc_pr.mmapped));
|
2002-03-23 20:17:10 +03:00
|
|
|
|
2004-07-08 02:30:22 +04:00
|
|
|
if (!sc->sc_pr.mmapped && sc->sc_pr.used < sc->sc_pr.blksize) {
|
|
|
|
wakeup(&sc->sc_wchan);
|
1998-08-10 00:28:07 +04:00
|
|
|
return 0;
|
2004-07-08 02:30:22 +04:00
|
|
|
}
|
1998-08-10 00:28:07 +04:00
|
|
|
|
|
|
|
if (sc->hw_if->trigger_output)
|
|
|
|
error = sc->hw_if->trigger_output(sc->hw_hdl, sc->sc_pr.start,
|
|
|
|
sc->sc_pr.end, sc->sc_pr.blksize,
|
|
|
|
audio_pint, (void *)sc, &sc->sc_pparams);
|
|
|
|
else
|
1997-07-27 05:16:32 +04:00
|
|
|
error = sc->hw_if->start_output(sc->hw_hdl, sc->sc_pr.outp,
|
1998-08-10 00:28:07 +04:00
|
|
|
sc->sc_pr.blksize, audio_pint, (void *)sc);
|
|
|
|
if (error) {
|
|
|
|
DPRINTF(("audiostartp failed: %d\n", error));
|
2002-03-23 20:17:10 +03:00
|
|
|
return error;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1998-08-10 00:28:07 +04:00
|
|
|
sc->sc_pbus = 1;
|
1997-08-25 02:31:23 +04:00
|
|
|
return 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
1996-02-16 05:25:43 +03:00
|
|
|
/*
|
1997-07-27 05:16:32 +04:00
|
|
|
* When the play interrupt routine finds that the write isn't keeping
|
|
|
|
* the buffer filled it will insert silence in the buffer to make up
|
|
|
|
* for this. The part of the buffer that is filled with silence
|
1998-08-05 20:38:09 +04:00
|
|
|
* is kept track of in a very approximate way: it starts at sc_sil_start
|
|
|
|
* and extends sc_sil_count bytes. If there is already silence in
|
|
|
|
* the requested area nothing is done; so when the whole buffer is
|
|
|
|
* silent nothing happens. When the writer starts again sc_sil_count
|
|
|
|
* is set to 0.
|
1996-02-16 05:25:43 +03:00
|
|
|
*/
|
1997-07-27 05:16:32 +04:00
|
|
|
/* XXX
|
|
|
|
* Putting silence into the output buffer should not really be done
|
|
|
|
* at splaudio, but there is no softaudio level to do it at yet.
|
|
|
|
*/
|
|
|
|
static __inline void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_pint_silence(struct audio_softc *sc, struct audio_ringbuffer *cb,
|
|
|
|
u_char *inp, int cc)
|
1996-02-16 05:25:43 +03:00
|
|
|
{
|
1997-07-27 05:16:32 +04:00
|
|
|
u_char *s, *e, *p, *q;
|
|
|
|
|
|
|
|
if (sc->sc_sil_count > 0) {
|
|
|
|
s = sc->sc_sil_start; /* start of silence */
|
1998-12-28 01:52:23 +03:00
|
|
|
e = s + sc->sc_sil_count; /* end of sil., may be beyond end */
|
1997-07-27 05:16:32 +04:00
|
|
|
p = inp; /* adjusted pointer to area to fill */
|
|
|
|
if (p < s)
|
|
|
|
p += cb->end - cb->start;
|
|
|
|
q = p+cc;
|
|
|
|
/* Check if there is already silence. */
|
|
|
|
if (!(s <= p && p < e &&
|
|
|
|
s <= q && q <= e)) {
|
|
|
|
if (s <= p)
|
1998-04-28 13:07:12 +04:00
|
|
|
sc->sc_sil_count = max(sc->sc_sil_count, q-s);
|
1998-12-28 01:52:23 +03:00
|
|
|
DPRINTFN(5,("audio_pint_silence: fill cc=%d inp=%p, "
|
2002-03-23 20:17:10 +03:00
|
|
|
"count=%d size=%d\n",
|
|
|
|
cc, inp, sc->sc_sil_count,
|
1998-12-28 01:52:23 +03:00
|
|
|
(int)(cb->end - cb->start)));
|
1997-07-27 05:16:32 +04:00
|
|
|
audio_fill_silence(&sc->sc_pparams, inp, cc);
|
|
|
|
} else {
|
1998-12-28 01:52:23 +03:00
|
|
|
DPRINTFN(5,("audio_pint_silence: already silent "
|
|
|
|
"cc=%d inp=%p\n", cc, inp));
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sc->sc_sil_start = inp;
|
|
|
|
sc->sc_sil_count = cc;
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTFN(5, ("audio_pint_silence: start fill %p %d\n",
|
|
|
|
inp, cc));
|
1997-07-27 05:16:32 +04:00
|
|
|
audio_fill_silence(&sc->sc_pparams, inp, cc);
|
|
|
|
}
|
1996-02-16 05:25:43 +03:00
|
|
|
}
|
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
/*
|
2003-05-03 22:10:37 +04:00
|
|
|
* Called from HW driver module on completion of DMA output.
|
1995-02-21 04:35:58 +03:00
|
|
|
* Start output of new block, wrap in ring buffer if needed.
|
|
|
|
* If no more buffers to play, output zero instead.
|
|
|
|
* Do a wakeup if necessary.
|
|
|
|
*/
|
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_pint(void *v)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1996-03-07 18:00:07 +03:00
|
|
|
struct audio_softc *sc = v;
|
1995-02-21 04:35:58 +03:00
|
|
|
struct audio_hw_if *hw = sc->hw_if;
|
1997-07-27 05:16:32 +04:00
|
|
|
struct audio_ringbuffer *cb = &sc->sc_pr;
|
|
|
|
u_char *inp;
|
1997-08-25 02:31:23 +04:00
|
|
|
int cc, ccr;
|
1998-08-28 16:07:41 +04:00
|
|
|
int blksize;
|
1996-03-07 18:00:07 +03:00
|
|
|
int error;
|
1997-07-27 05:16:32 +04:00
|
|
|
|
2002-03-23 20:17:10 +03:00
|
|
|
if (!sc->sc_open)
|
|
|
|
return; /* ignore interrupt if not open */
|
1997-10-16 20:41:18 +04:00
|
|
|
|
1998-08-28 16:07:41 +04:00
|
|
|
blksize = cb->blksize;
|
|
|
|
|
|
|
|
cb->outp += blksize;
|
1997-07-27 05:16:32 +04:00
|
|
|
if (cb->outp >= cb->end)
|
|
|
|
cb->outp = cb->start;
|
1998-08-28 16:07:41 +04:00
|
|
|
cb->stamp += blksize / sc->sc_pparams.factor;
|
1997-07-27 05:16:32 +04:00
|
|
|
if (cb->mmapped) {
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTFN(5, ("audio_pint: mmapped outp=%p cc=%d inp=%p\n",
|
|
|
|
cb->outp, blksize, cb->inp));
|
1998-08-10 00:28:07 +04:00
|
|
|
if (!hw->trigger_output)
|
|
|
|
(void)hw->start_output(sc->hw_hdl, cb->outp,
|
1998-08-28 16:07:41 +04:00
|
|
|
blksize, audio_pint, (void *)sc);
|
1997-07-27 05:16:32 +04:00
|
|
|
return;
|
|
|
|
}
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
#ifdef AUDIO_INTR_TIME
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
u_long t;
|
|
|
|
microtime(&tv);
|
|
|
|
t = tv.tv_usec + 1000000 * tv.tv_sec;
|
|
|
|
if (sc->sc_pnintr) {
|
|
|
|
long lastdelta, totdelta;
|
|
|
|
lastdelta = t - sc->sc_plastintr - sc->sc_pblktime;
|
1998-08-04 15:26:14 +04:00
|
|
|
if (lastdelta > sc->sc_pblktime / 3) {
|
1998-12-28 01:52:23 +03:00
|
|
|
printf("audio: play interrupt(%d) off "
|
2002-03-23 20:17:10 +03:00
|
|
|
"relative by %ld us (%lu)\n",
|
|
|
|
sc->sc_pnintr, lastdelta,
|
1998-12-28 01:52:23 +03:00
|
|
|
sc->sc_pblktime);
|
1997-07-27 05:16:32 +04:00
|
|
|
}
|
2002-03-23 20:17:10 +03:00
|
|
|
totdelta = t - sc->sc_pfirstintr -
|
1998-12-28 01:52:23 +03:00
|
|
|
sc->sc_pblktime * sc->sc_pnintr;
|
1998-08-04 15:26:14 +04:00
|
|
|
if (totdelta > sc->sc_pblktime) {
|
1998-12-28 01:52:23 +03:00
|
|
|
printf("audio: play interrupt(%d) off "
|
2002-03-23 20:17:10 +03:00
|
|
|
"absolute by %ld us (%lu) (LOST)\n",
|
|
|
|
sc->sc_pnintr, totdelta,
|
1998-12-28 01:52:23 +03:00
|
|
|
sc->sc_pblktime);
|
1997-07-27 05:16:32 +04:00
|
|
|
sc->sc_pnintr++; /* avoid repeated messages */
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
sc->sc_pfirstintr = t;
|
|
|
|
sc->sc_plastintr = t;
|
|
|
|
sc->sc_pnintr++;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1998-08-28 16:07:41 +04:00
|
|
|
cb->used -= blksize;
|
|
|
|
if (cb->used < blksize) {
|
1997-07-27 05:16:32 +04:00
|
|
|
/* we don't have a full block to use */
|
|
|
|
if (cb->copying) {
|
|
|
|
/* writer is in progress, don't disturb */
|
|
|
|
cb->needfill = 1;
|
1998-04-28 13:07:12 +04:00
|
|
|
DPRINTFN(1, ("audio_pint: copying in progress\n"));
|
1997-07-27 05:16:32 +04:00
|
|
|
} else {
|
|
|
|
inp = cb->inp;
|
1998-08-28 16:07:41 +04:00
|
|
|
cc = blksize - (inp - cb->start) % blksize;
|
1997-08-25 02:31:23 +04:00
|
|
|
ccr = cc / sc->sc_pparams.factor;
|
1997-07-27 05:16:32 +04:00
|
|
|
if (cb->pause)
|
1997-08-25 02:31:23 +04:00
|
|
|
cb->pdrops += ccr;
|
1997-07-27 05:16:32 +04:00
|
|
|
else {
|
1997-08-25 02:31:23 +04:00
|
|
|
cb->drops += ccr;
|
|
|
|
sc->sc_playdrop += ccr;
|
1997-07-27 05:16:32 +04:00
|
|
|
}
|
|
|
|
audio_pint_silence(sc, cb, inp, cc);
|
|
|
|
inp += cc;
|
|
|
|
if (inp >= cb->end)
|
|
|
|
inp = cb->start;
|
|
|
|
cb->inp = inp;
|
|
|
|
cb->used += cc;
|
|
|
|
|
|
|
|
/* Clear next block so we keep ahead of the DMA. */
|
|
|
|
if (cb->used + cc < cb->usedhigh)
|
1998-08-28 16:07:41 +04:00
|
|
|
audio_pint_silence(sc, cb, inp, blksize);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
}
|
1997-07-27 05:16:32 +04:00
|
|
|
|
1998-08-28 16:07:41 +04:00
|
|
|
DPRINTFN(5, ("audio_pint: outp=%p cc=%d\n", cb->outp, blksize));
|
1998-08-10 00:28:07 +04:00
|
|
|
if (!hw->trigger_output) {
|
1998-08-28 16:07:41 +04:00
|
|
|
error = hw->start_output(sc->hw_hdl, cb->outp, blksize,
|
1998-08-10 00:28:07 +04:00
|
|
|
audio_pint, (void *)sc);
|
|
|
|
if (error) {
|
|
|
|
/* XXX does this really help? */
|
|
|
|
DPRINTF(("audio_pint restart failed: %d\n", error));
|
|
|
|
audio_clear(sc);
|
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
1998-09-01 11:27:06 +04:00
|
|
|
DPRINTFN(2, ("audio_pint: mode=%d pause=%d used=%d lowat=%d\n",
|
2002-03-23 20:17:10 +03:00
|
|
|
sc->sc_mode, cb->pause, cb->used, cb->usedlow));
|
1997-07-27 05:16:32 +04:00
|
|
|
if ((sc->sc_mode & AUMODE_PLAY) && !cb->pause) {
|
|
|
|
if (cb->used <= cb->usedlow) {
|
1995-02-21 04:35:58 +03:00
|
|
|
audio_wakeup(&sc->sc_wchan);
|
2002-10-23 13:10:23 +04:00
|
|
|
selnotify(&sc->sc_wsel, 0);
|
1997-08-11 05:38:12 +04:00
|
|
|
if (sc->sc_async_audio) {
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTFN(3, ("audio_pint: sending SIGIO %p\n",
|
|
|
|
sc->sc_async_audio));
|
1997-08-11 05:38:12 +04:00
|
|
|
psignal(sc->sc_async_audio, SIGIO);
|
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
/* Possible to return one or more "phantom blocks" now. */
|
|
|
|
if (!sc->sc_full_duplex && sc->sc_rchan) {
|
1995-02-21 04:35:58 +03:00
|
|
|
audio_wakeup(&sc->sc_rchan);
|
2002-10-23 13:10:23 +04:00
|
|
|
selnotify(&sc->sc_rsel, 0);
|
1997-08-11 05:38:12 +04:00
|
|
|
if (sc->sc_async_audio)
|
|
|
|
psignal(sc->sc_async_audio, SIGIO);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-05-03 22:10:37 +04:00
|
|
|
* Called from HW driver module on completion of DMA input.
|
1995-02-21 04:35:58 +03:00
|
|
|
* Mark it as input in the ring buffer (fiddle pointers).
|
|
|
|
* Do a wakeup if necessary.
|
|
|
|
*/
|
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_rint(void *v)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1996-03-07 18:00:07 +03:00
|
|
|
struct audio_softc *sc = v;
|
1995-02-21 04:35:58 +03:00
|
|
|
struct audio_hw_if *hw = sc->hw_if;
|
1997-07-27 05:16:32 +04:00
|
|
|
struct audio_ringbuffer *cb = &sc->sc_rr;
|
1998-08-28 16:07:41 +04:00
|
|
|
int blksize;
|
1996-03-07 18:00:07 +03:00
|
|
|
int error;
|
1997-07-27 05:16:32 +04:00
|
|
|
|
2002-03-23 20:17:10 +03:00
|
|
|
if (!sc->sc_open)
|
|
|
|
return; /* ignore interrupt if not open */
|
1997-10-19 11:41:33 +04:00
|
|
|
|
1998-08-28 16:07:41 +04:00
|
|
|
blksize = cb->blksize;
|
|
|
|
|
|
|
|
cb->inp += blksize;
|
1997-07-27 05:16:32 +04:00
|
|
|
if (cb->inp >= cb->end)
|
|
|
|
cb->inp = cb->start;
|
1998-08-28 16:07:41 +04:00
|
|
|
cb->stamp += blksize;
|
1997-07-27 05:16:32 +04:00
|
|
|
if (cb->mmapped) {
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTFN(2, ("audio_rint: mmapped inp=%p cc=%d\n",
|
|
|
|
cb->inp, blksize));
|
1998-08-10 00:28:07 +04:00
|
|
|
if (!hw->trigger_input)
|
1998-08-28 16:07:41 +04:00
|
|
|
(void)hw->start_input(sc->hw_hdl, cb->inp, blksize,
|
1998-08-10 00:28:07 +04:00
|
|
|
audio_rint, (void *)sc);
|
1997-07-27 05:16:32 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef AUDIO_INTR_TIME
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
u_long t;
|
|
|
|
microtime(&tv);
|
|
|
|
t = tv.tv_usec + 1000000 * tv.tv_sec;
|
|
|
|
if (sc->sc_rnintr) {
|
|
|
|
long lastdelta, totdelta;
|
|
|
|
lastdelta = t - sc->sc_rlastintr - sc->sc_rblktime;
|
|
|
|
if (lastdelta > sc->sc_rblktime / 5) {
|
1998-12-28 01:52:23 +03:00
|
|
|
printf("audio: record interrupt(%d) off "
|
2002-03-23 20:17:10 +03:00
|
|
|
"relative by %ld us (%lu)\n",
|
|
|
|
sc->sc_rnintr, lastdelta,
|
1998-12-28 01:52:23 +03:00
|
|
|
sc->sc_rblktime);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
2002-03-23 20:17:10 +03:00
|
|
|
totdelta = t - sc->sc_rfirstintr -
|
1998-12-28 01:52:23 +03:00
|
|
|
sc->sc_rblktime * sc->sc_rnintr;
|
1997-07-27 05:16:32 +04:00
|
|
|
if (totdelta > sc->sc_rblktime / 2) {
|
|
|
|
sc->sc_rnintr++;
|
1998-12-28 01:52:23 +03:00
|
|
|
printf("audio: record interrupt(%d) off "
|
2002-03-23 20:17:10 +03:00
|
|
|
"absolute by %ld us (%lu)\n",
|
|
|
|
sc->sc_rnintr, totdelta,
|
1998-12-28 01:52:23 +03:00
|
|
|
sc->sc_rblktime);
|
1997-07-27 05:16:32 +04:00
|
|
|
sc->sc_rnintr++; /* avoid repeated messages */
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
sc->sc_rfirstintr = t;
|
|
|
|
sc->sc_rlastintr = t;
|
|
|
|
sc->sc_rnintr++;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1997-07-27 05:16:32 +04:00
|
|
|
#endif
|
|
|
|
|
1998-08-28 16:07:41 +04:00
|
|
|
cb->used += blksize;
|
1997-07-27 05:16:32 +04:00
|
|
|
if (cb->pause) {
|
1998-04-28 13:07:12 +04:00
|
|
|
DPRINTFN(1, ("audio_rint: pdrops %lu\n", cb->pdrops));
|
1998-08-28 16:07:41 +04:00
|
|
|
cb->pdrops += blksize;
|
|
|
|
cb->outp += blksize;
|
2002-05-27 21:13:14 +04:00
|
|
|
if (cb->outp >= cb->end)
|
|
|
|
cb->outp = cb->start;
|
1998-08-28 16:07:41 +04:00
|
|
|
cb->used -= blksize;
|
|
|
|
} else if (cb->used + blksize >= cb->usedhigh && !cb->copying) {
|
1998-04-28 13:07:12 +04:00
|
|
|
DPRINTFN(1, ("audio_rint: drops %lu\n", cb->drops));
|
1998-08-28 16:07:41 +04:00
|
|
|
cb->drops += blksize;
|
|
|
|
cb->outp += blksize;
|
2002-05-27 21:13:14 +04:00
|
|
|
if (cb->outp >= cb->end)
|
|
|
|
cb->outp = cb->start;
|
1998-08-28 16:07:41 +04:00
|
|
|
cb->used -= blksize;
|
1997-07-27 05:16:32 +04:00
|
|
|
}
|
|
|
|
|
2002-03-23 20:17:10 +03:00
|
|
|
DPRINTFN(2, ("audio_rint: inp=%p cc=%d used=%d\n",
|
|
|
|
cb->inp, blksize, cb->used));
|
1998-08-10 00:28:07 +04:00
|
|
|
if (!hw->trigger_input) {
|
1998-08-28 16:07:41 +04:00
|
|
|
error = hw->start_input(sc->hw_hdl, cb->inp, blksize,
|
1998-08-10 00:28:07 +04:00
|
|
|
audio_rint, (void *)sc);
|
|
|
|
if (error) {
|
|
|
|
/* XXX does this really help? */
|
|
|
|
DPRINTF(("audio_rint: restart failed: %d\n", error));
|
|
|
|
audio_clear(sc);
|
|
|
|
}
|
1997-07-27 05:16:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
audio_wakeup(&sc->sc_rchan);
|
2002-10-23 13:10:23 +04:00
|
|
|
selnotify(&sc->sc_rsel, 0);
|
1997-08-11 05:38:12 +04:00
|
|
|
if (sc->sc_async_audio)
|
|
|
|
psignal(sc->sc_async_audio, SIGIO);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
|
1997-03-20 09:48:48 +03:00
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audio_check_params(struct audio_params *p)
|
1997-03-20 09:48:48 +03:00
|
|
|
{
|
1997-07-15 11:46:04 +04:00
|
|
|
if (p->encoding == AUDIO_ENCODING_PCM16) {
|
|
|
|
if (p->precision == 8)
|
|
|
|
p->encoding = AUDIO_ENCODING_ULINEAR;
|
|
|
|
else
|
|
|
|
p->encoding = AUDIO_ENCODING_SLINEAR;
|
|
|
|
} else if (p->encoding == AUDIO_ENCODING_PCM8) {
|
|
|
|
if (p->precision == 8)
|
|
|
|
p->encoding = AUDIO_ENCODING_ULINEAR;
|
|
|
|
else
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p->encoding == AUDIO_ENCODING_SLINEAR)
|
1997-05-07 22:51:31 +04:00
|
|
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
1997-07-15 11:46:04 +04:00
|
|
|
p->encoding = AUDIO_ENCODING_SLINEAR_LE;
|
1997-05-07 22:51:31 +04:00
|
|
|
#else
|
1997-07-15 11:46:04 +04:00
|
|
|
p->encoding = AUDIO_ENCODING_SLINEAR_BE;
|
1997-05-07 22:51:31 +04:00
|
|
|
#endif
|
|
|
|
if (p->encoding == AUDIO_ENCODING_ULINEAR)
|
|
|
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
|
|
|
p->encoding = AUDIO_ENCODING_ULINEAR_LE;
|
|
|
|
#else
|
|
|
|
p->encoding = AUDIO_ENCODING_ULINEAR_BE;
|
|
|
|
#endif
|
1997-03-20 09:48:48 +03:00
|
|
|
|
1997-04-30 01:01:33 +04:00
|
|
|
switch (p->encoding) {
|
1997-03-20 09:48:48 +03:00
|
|
|
case AUDIO_ENCODING_ULAW:
|
|
|
|
case AUDIO_ENCODING_ALAW:
|
1997-04-30 01:01:33 +04:00
|
|
|
if (p->precision != 8)
|
1997-03-20 09:48:48 +03:00
|
|
|
return (EINVAL);
|
|
|
|
break;
|
2001-05-02 16:49:41 +04:00
|
|
|
case AUDIO_ENCODING_ADPCM:
|
|
|
|
if (p->precision != 4 && p->precision != 8)
|
|
|
|
return (EINVAL);
|
|
|
|
break;
|
1997-07-15 11:46:04 +04:00
|
|
|
case AUDIO_ENCODING_SLINEAR_LE:
|
|
|
|
case AUDIO_ENCODING_SLINEAR_BE:
|
1997-05-07 22:51:31 +04:00
|
|
|
case AUDIO_ENCODING_ULINEAR_LE:
|
|
|
|
case AUDIO_ENCODING_ULINEAR_BE:
|
2001-09-03 22:51:43 +04:00
|
|
|
/* XXX is: our zero-fill can handle any multiple of 8 */
|
|
|
|
if (p->precision != 8 && p->precision != 16 &&
|
|
|
|
p->precision != 24 && p->precision != 32)
|
1997-03-20 09:48:48 +03:00
|
|
|
return (EINVAL);
|
|
|
|
break;
|
1997-10-17 03:57:56 +04:00
|
|
|
case AUDIO_ENCODING_MPEG_L1_STREAM:
|
|
|
|
case AUDIO_ENCODING_MPEG_L1_PACKETS:
|
|
|
|
case AUDIO_ENCODING_MPEG_L1_SYSTEM:
|
|
|
|
case AUDIO_ENCODING_MPEG_L2_STREAM:
|
|
|
|
case AUDIO_ENCODING_MPEG_L2_PACKETS:
|
|
|
|
case AUDIO_ENCODING_MPEG_L2_SYSTEM:
|
|
|
|
break;
|
1997-03-20 09:48:48 +03:00
|
|
|
default:
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
1998-12-28 01:52:23 +03:00
|
|
|
if (p->channels < 1 || p->channels > 8) /* sanity check # of channels*/
|
1997-07-28 03:06:04 +04:00
|
|
|
return (EINVAL);
|
|
|
|
|
1997-03-20 09:48:48 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2003-10-02 11:15:20 +04:00
|
|
|
int
|
|
|
|
audio_set_defaults(struct audio_softc *sc, u_int mode)
|
|
|
|
{
|
|
|
|
struct audio_info ai;
|
|
|
|
|
|
|
|
/* default parameters */
|
|
|
|
sc->sc_rparams = audio_default;
|
|
|
|
sc->sc_pparams = audio_default;
|
|
|
|
sc->sc_blkset = 0;
|
|
|
|
|
|
|
|
AUDIO_INITINFO(&ai);
|
|
|
|
ai.record.sample_rate = sc->sc_rparams.sample_rate;
|
|
|
|
ai.record.encoding = sc->sc_rparams.encoding;
|
|
|
|
ai.record.channels = sc->sc_rparams.channels;
|
|
|
|
ai.record.precision = sc->sc_rparams.precision;
|
|
|
|
ai.play.sample_rate = sc->sc_pparams.sample_rate;
|
|
|
|
ai.play.encoding = sc->sc_pparams.encoding;
|
|
|
|
ai.play.channels = sc->sc_pparams.channels;
|
|
|
|
ai.play.precision = sc->sc_pparams.precision;
|
|
|
|
ai.mode = mode;
|
|
|
|
|
|
|
|
return (audiosetinfo(sc, &ai));
|
|
|
|
}
|
|
|
|
|
1997-10-19 11:41:33 +04:00
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
au_set_lr_value(struct audio_softc *sc, mixer_ctrl_t *ct, int l, int r)
|
1997-10-19 11:41:33 +04:00
|
|
|
{
|
|
|
|
ct->type = AUDIO_MIXER_VALUE;
|
|
|
|
ct->un.value.num_channels = 2;
|
|
|
|
ct->un.value.level[AUDIO_MIXER_LEVEL_LEFT] = l;
|
|
|
|
ct->un.value.level[AUDIO_MIXER_LEVEL_RIGHT] = r;
|
|
|
|
if (sc->hw_if->set_port(sc->hw_hdl, ct) == 0)
|
|
|
|
return 0;
|
|
|
|
ct->un.value.num_channels = 1;
|
|
|
|
ct->un.value.level[AUDIO_MIXER_LEVEL_MONO] = (l+r)/2;
|
|
|
|
return sc->hw_if->set_port(sc->hw_hdl, ct);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
au_set_gain(struct audio_softc *sc, struct au_mixer_ports *ports,
|
|
|
|
int gain, int balance)
|
1997-10-19 11:41:33 +04:00
|
|
|
{
|
|
|
|
mixer_ctrl_t ct;
|
|
|
|
int i, error;
|
|
|
|
int l, r;
|
|
|
|
u_int mask;
|
|
|
|
int nset;
|
|
|
|
|
|
|
|
if (balance == AUDIO_MID_BALANCE) {
|
|
|
|
l = r = gain;
|
|
|
|
} else if (balance < AUDIO_MID_BALANCE) {
|
|
|
|
l = gain;
|
2002-11-08 08:02:07 +03:00
|
|
|
r = (balance * gain) / AUDIO_MID_BALANCE;
|
|
|
|
} else {
|
|
|
|
r = gain;
|
|
|
|
l = ((AUDIO_RIGHT_BALANCE - balance) * gain)
|
1997-10-19 11:41:33 +04:00
|
|
|
/ AUDIO_MID_BALANCE;
|
|
|
|
}
|
|
|
|
DPRINTF(("au_set_gain: gain=%d balance=%d, l=%d r=%d\n",
|
|
|
|
gain, balance, l, r));
|
|
|
|
|
|
|
|
if (ports->index == -1) {
|
|
|
|
usemaster:
|
|
|
|
if (ports->master == -1)
|
|
|
|
return 0; /* just ignore it silently */
|
|
|
|
ct.dev = ports->master;
|
|
|
|
error = au_set_lr_value(sc, &ct, l, r);
|
|
|
|
} else {
|
|
|
|
ct.dev = ports->index;
|
|
|
|
if (ports->isenum) {
|
|
|
|
ct.type = AUDIO_MIXER_ENUM;
|
|
|
|
error = sc->hw_if->get_port(sc->hw_hdl, &ct);
|
|
|
|
if (error)
|
|
|
|
return error;
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
if (ports->isdual) {
|
|
|
|
if (ports->cur_port == -1)
|
|
|
|
ct.dev = ports->master;
|
|
|
|
else
|
|
|
|
ct.dev = ports->miport[ports->cur_port];
|
|
|
|
error = au_set_lr_value(sc, &ct, l, r);
|
|
|
|
} else {
|
|
|
|
for(i = 0; i < ports->nports; i++)
|
|
|
|
if (ports->misel[i] == ct.un.ord) {
|
|
|
|
ct.dev = ports->miport[i];
|
|
|
|
if (ct.dev == -1 ||
|
|
|
|
au_set_lr_value(sc, &ct, l, r))
|
|
|
|
goto usemaster;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
1997-10-19 11:41:33 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ct.type = AUDIO_MIXER_SET;
|
|
|
|
error = sc->hw_if->get_port(sc->hw_hdl, &ct);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
mask = ct.un.mask;
|
|
|
|
nset = 0;
|
|
|
|
for(i = 0; i < ports->nports; i++) {
|
|
|
|
if (ports->misel[i] & mask) {
|
|
|
|
ct.dev = ports->miport[i];
|
|
|
|
if (ct.dev != -1 &&
|
|
|
|
au_set_lr_value(sc, &ct, l, r) == 0)
|
|
|
|
nset++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (nset == 0)
|
|
|
|
goto usemaster;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!error)
|
|
|
|
mixer_signal(sc);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
au_get_lr_value(struct audio_softc *sc, mixer_ctrl_t *ct, int *l, int *r)
|
1997-10-19 11:41:33 +04:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
|
|
|
ct->un.value.num_channels = 2;
|
|
|
|
if (sc->hw_if->get_port(sc->hw_hdl, ct) == 0) {
|
|
|
|
*l = ct->un.value.level[AUDIO_MIXER_LEVEL_LEFT];
|
|
|
|
*r = ct->un.value.level[AUDIO_MIXER_LEVEL_RIGHT];
|
|
|
|
} else {
|
|
|
|
ct->un.value.num_channels = 1;
|
|
|
|
error = sc->hw_if->get_port(sc->hw_hdl, ct);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
*r = *l = ct->un.value.level[AUDIO_MIXER_LEVEL_MONO];
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-10-03 03:31:54 +04:00
|
|
|
au_get_gain(struct audio_softc *sc, struct au_mixer_ports *ports,
|
|
|
|
u_int *pgain, u_char *pbalance)
|
1997-10-19 11:41:33 +04:00
|
|
|
{
|
|
|
|
mixer_ctrl_t ct;
|
|
|
|
int i, l, r, n;
|
|
|
|
int lgain = AUDIO_MAX_GAIN/2, rgain = AUDIO_MAX_GAIN/2;
|
|
|
|
|
|
|
|
if (ports->index == -1) {
|
|
|
|
usemaster:
|
|
|
|
if (ports->master == -1)
|
|
|
|
goto bad;
|
|
|
|
ct.dev = ports->master;
|
|
|
|
ct.type = AUDIO_MIXER_VALUE;
|
|
|
|
if (au_get_lr_value(sc, &ct, &lgain, &rgain))
|
|
|
|
goto bad;
|
|
|
|
} else {
|
|
|
|
ct.dev = ports->index;
|
|
|
|
if (ports->isenum) {
|
|
|
|
ct.type = AUDIO_MIXER_ENUM;
|
|
|
|
if (sc->hw_if->get_port(sc->hw_hdl, &ct))
|
|
|
|
goto bad;
|
|
|
|
ct.type = AUDIO_MIXER_VALUE;
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
if (ports->isdual) {
|
|
|
|
if (ports->cur_port == -1)
|
|
|
|
ct.dev = ports->master;
|
|
|
|
else
|
|
|
|
ct.dev = ports->miport[ports->cur_port];
|
|
|
|
au_get_lr_value(sc, &ct, &lgain, &rgain);
|
|
|
|
} else {
|
|
|
|
for(i = 0; i < ports->nports; i++)
|
|
|
|
if (ports->misel[i] == ct.un.ord) {
|
|
|
|
ct.dev = ports->miport[i];
|
|
|
|
if (ct.dev == -1 ||
|
|
|
|
au_get_lr_value(sc, &ct,
|
|
|
|
&lgain, &rgain))
|
|
|
|
goto usemaster;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
1997-10-19 11:41:33 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ct.type = AUDIO_MIXER_SET;
|
|
|
|
if (sc->hw_if->get_port(sc->hw_hdl, &ct))
|
|
|
|
goto bad;
|
|
|
|
ct.type = AUDIO_MIXER_VALUE;
|
|
|
|
lgain = rgain = n = 0;
|
|
|
|
for(i = 0; i < ports->nports; i++) {
|
|
|
|
if (ports->misel[i] & ct.un.mask) {
|
|
|
|
ct.dev = ports->miport[i];
|
|
|
|
if (ct.dev == -1 ||
|
|
|
|
au_get_lr_value(sc, &ct, &l, &r))
|
|
|
|
goto usemaster;
|
|
|
|
else {
|
|
|
|
lgain += l;
|
|
|
|
rgain += r;
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (n != 0) {
|
|
|
|
lgain /= n;
|
|
|
|
rgain /= n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bad:
|
|
|
|
if (lgain == rgain) { /* handles lgain==rgain==0 */
|
|
|
|
*pgain = lgain;
|
|
|
|
*pbalance = AUDIO_MID_BALANCE;
|
|
|
|
} else if (lgain < rgain) {
|
|
|
|
*pgain = rgain;
|
2002-11-08 08:02:07 +03:00
|
|
|
/* balance should be > AUDIO_MID_BALANCE */
|
|
|
|
*pbalance = AUDIO_RIGHT_BALANCE -
|
|
|
|
(AUDIO_MID_BALANCE * lgain) / rgain;
|
1997-10-19 11:41:33 +04:00
|
|
|
} else /* lgain > rgain */ {
|
|
|
|
*pgain = lgain;
|
2002-11-08 08:02:07 +03:00
|
|
|
/* balance should be < AUDIO_MID_BALANCE */
|
|
|
|
*pbalance = (AUDIO_MID_BALANCE * rgain) / lgain;
|
1997-10-19 11:41:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
au_set_port(struct audio_softc *sc, struct au_mixer_ports *ports, u_int port)
|
1997-10-19 11:41:33 +04:00
|
|
|
{
|
|
|
|
mixer_ctrl_t ct;
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
int i, error, use_mixerout;
|
|
|
|
|
|
|
|
use_mixerout = 1;
|
|
|
|
if (port == 0) {
|
|
|
|
if (ports->allports == 0)
|
|
|
|
return 0; /* Allow this special case. */
|
|
|
|
else if (ports->isdual) {
|
|
|
|
if (ports->cur_port == -1) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
port = ports->aumask[ports->cur_port];
|
|
|
|
ports->cur_port = -1;
|
|
|
|
use_mixerout = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1997-10-19 11:41:33 +04:00
|
|
|
if (ports->index == -1)
|
|
|
|
return EINVAL;
|
|
|
|
ct.dev = ports->index;
|
|
|
|
if (ports->isenum) {
|
|
|
|
if (port & (port-1))
|
|
|
|
return EINVAL; /* Only one port allowed */
|
|
|
|
ct.type = AUDIO_MIXER_ENUM;
|
|
|
|
error = EINVAL;
|
|
|
|
for(i = 0; i < ports->nports; i++)
|
|
|
|
if (ports->aumask[i] == port) {
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
if (ports->isdual && use_mixerout) {
|
|
|
|
ct.un.ord = ports->mixerout;
|
|
|
|
ports->cur_port = i;
|
|
|
|
} else {
|
|
|
|
ct.un.ord = ports->misel[i];
|
|
|
|
}
|
1997-10-19 11:41:33 +04:00
|
|
|
error = sc->hw_if->set_port(sc->hw_hdl, &ct);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ct.type = AUDIO_MIXER_SET;
|
|
|
|
ct.un.mask = 0;
|
|
|
|
for(i = 0; i < ports->nports; i++)
|
2002-03-23 20:17:10 +03:00
|
|
|
if (ports->aumask[i] & port)
|
1997-10-19 11:41:33 +04:00
|
|
|
ct.un.mask |= ports->misel[i];
|
|
|
|
if (port != 0 && ct.un.mask == 0)
|
|
|
|
error = EINVAL;
|
|
|
|
else
|
|
|
|
error = sc->hw_if->set_port(sc->hw_hdl, &ct);
|
|
|
|
}
|
|
|
|
if (!error)
|
|
|
|
mixer_signal(sc);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
au_get_port(struct audio_softc *sc, struct au_mixer_ports *ports)
|
1997-10-19 11:41:33 +04:00
|
|
|
{
|
|
|
|
mixer_ctrl_t ct;
|
|
|
|
int i, aumask;
|
|
|
|
|
|
|
|
if (ports->index == -1)
|
|
|
|
return 0;
|
|
|
|
ct.dev = ports->index;
|
|
|
|
ct.type = ports->isenum ? AUDIO_MIXER_ENUM : AUDIO_MIXER_SET;
|
|
|
|
if (sc->hw_if->get_port(sc->hw_hdl, &ct))
|
|
|
|
return 0;
|
|
|
|
aumask = 0;
|
|
|
|
if (ports->isenum) {
|
Fix a couple of long-standing bugs in the volume control(s) part of the
audio device interface:
1) When attempting to match the appropriate mixer control, we weren't
checking the class label, but only the second level label, so for
devices that had both an "inputs.cd" and a "record.cd", for example,
we could never do the right thing except by chance. For this reason,
evidently, all the record masters were labeled (by the underlying
drivers) either "record.record" or "record.volume", to distinguish
from "outputs.master". We'll now accept "record.master", and document
that as the the new preferred way.
2) More importantly, the model was deficient. Selecting a port on many
chips completely disables most of the level controls, which doesn't play
nice with other applications which are trying to use the interface. Now,
selecting a port simply sets which mixer input control shall be changed,
setting state in the audio layer. In other words, the "mixerout" port
is really selected all the time, enabling the final stage mixer, and
setting "gain" sets the level of the appropriate input. It should be
possible for separate applications to each control the mic, dac, and cd
inputs at the same time using this interface, simply by reiterating their
port selections with each change, but applications that don't bother to
do that aren't any worse off than they were before.
The user is expected to set the master output with another application,
dedicated to that task. Though it is now meaningful to select "no port"
with the audio device interface, to manipulate the master output, there's
no particular reason for an audio device consumer to do that. (I added
the capability in order to restore the initial state of the audio device,
for testing purposes. It might also be useful to users of broken binary-
only applications.)
Observe that the mixer device interface (and so, "mixerctl") still
retains all capabilities, including the ability to set the actual input
port on the chip, overriding the level controls. No change is being made
to the mixer device interface. The mixer device simply presents all the
controls on the chip, with no attempt at abstraction, so there are no
bugs there.
The upshot is, that applications that have been trying to use the audio
device interface to change the volume, such as mplayer, now "just work".
I've tested these changes extensively with "eso" and "eap" since first
proposing them on tech-kern last January, and somewhat with "esm" and a
few others. This closes both PR kern/10221, and PR kern/17159.
2004-01-31 03:07:56 +03:00
|
|
|
if (ports->isdual && ports->cur_port != -1) {
|
|
|
|
if (ports->mixerout == ct.un.ord)
|
|
|
|
aumask = ports->aumask[ports->cur_port];
|
|
|
|
else
|
|
|
|
ports->cur_port = -1;
|
|
|
|
}
|
|
|
|
if (aumask == 0)
|
|
|
|
for(i = 0; i < ports->nports; i++)
|
|
|
|
if (ports->misel[i] == ct.un.ord)
|
|
|
|
aumask = ports->aumask[i];
|
1997-10-19 11:41:33 +04:00
|
|
|
} else {
|
|
|
|
for(i = 0; i < ports->nports; i++)
|
|
|
|
if (ct.un.mask & ports->misel[i])
|
|
|
|
aumask |= ports->aumask[i];
|
|
|
|
}
|
|
|
|
return aumask;
|
|
|
|
}
|
|
|
|
|
2002-03-09 23:30:42 +03:00
|
|
|
#if NAURATECONV <= 0
|
|
|
|
/* dummy function for the case that aurateconv is not linked */
|
|
|
|
int
|
|
|
|
auconv_check_params(const struct audio_params *params)
|
|
|
|
{
|
|
|
|
if (params->hw_channels == params->channels
|
|
|
|
&& params->hw_sample_rate == params->sample_rate)
|
|
|
|
return 0; /* No conversion */
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
#endif /* !NAURATECONV */
|
|
|
|
|
1995-04-18 03:04:31 +04:00
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audiosetinfo(struct audio_softc *sc, struct audio_info *ai)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
|
|
|
struct audio_prinfo *r = &ai->record, *p = &ai->play;
|
1997-08-25 02:31:23 +04:00
|
|
|
int cleared;
|
1998-08-10 05:17:33 +04:00
|
|
|
int s, setmode, modechange = 0;
|
1997-08-25 02:31:23 +04:00
|
|
|
int error;
|
1995-02-21 04:35:58 +03:00
|
|
|
struct audio_hw_if *hw = sc->hw_if;
|
1997-04-30 01:01:33 +04:00
|
|
|
struct audio_params pp, rp;
|
|
|
|
int np, nr;
|
1997-07-27 05:16:32 +04:00
|
|
|
unsigned int blks;
|
1997-08-19 03:20:09 +04:00
|
|
|
int oldpblksize, oldrblksize;
|
1997-08-25 02:31:23 +04:00
|
|
|
int rbus, pbus;
|
1997-10-19 11:41:33 +04:00
|
|
|
u_int gain;
|
|
|
|
u_char balance;
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
if (hw == 0) /* HW has not attached */
|
|
|
|
return(ENXIO);
|
|
|
|
|
1997-08-25 02:31:23 +04:00
|
|
|
rbus = sc->sc_rbus;
|
|
|
|
pbus = sc->sc_pbus;
|
|
|
|
error = 0;
|
|
|
|
cleared = 0;
|
|
|
|
|
|
|
|
pp = sc->sc_pparams; /* Temporary encoding storage in */
|
|
|
|
rp = sc->sc_rparams; /* case setting the modes fails. */
|
1997-04-30 01:01:33 +04:00
|
|
|
nr = np = 0;
|
1997-08-19 03:20:09 +04:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
if (p->sample_rate != ~0) {
|
1997-04-30 01:01:33 +04:00
|
|
|
pp.sample_rate = p->sample_rate;
|
|
|
|
np++;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
if (r->sample_rate != ~0) {
|
1997-04-30 01:01:33 +04:00
|
|
|
rp.sample_rate = r->sample_rate;
|
|
|
|
nr++;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1997-04-30 01:01:33 +04:00
|
|
|
if (p->encoding != ~0) {
|
|
|
|
pp.encoding = p->encoding;
|
|
|
|
np++;
|
2002-03-23 20:17:10 +03:00
|
|
|
}
|
1997-04-30 01:01:33 +04:00
|
|
|
if (r->encoding != ~0) {
|
|
|
|
rp.encoding = r->encoding;
|
|
|
|
nr++;
|
|
|
|
}
|
|
|
|
if (p->precision != ~0) {
|
|
|
|
pp.precision = p->precision;
|
|
|
|
np++;
|
|
|
|
}
|
|
|
|
if (r->precision != ~0) {
|
|
|
|
rp.precision = r->precision;
|
|
|
|
nr++;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
if (p->channels != ~0) {
|
1997-04-30 01:01:33 +04:00
|
|
|
pp.channels = p->channels;
|
|
|
|
np++;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
if (r->channels != ~0) {
|
1997-04-30 01:01:33 +04:00
|
|
|
rp.channels = r->channels;
|
|
|
|
nr++;
|
|
|
|
}
|
1997-07-27 05:16:32 +04:00
|
|
|
#ifdef AUDIO_DEBUG
|
|
|
|
if (audiodebug && nr)
|
|
|
|
audio_print_params("Setting record params", &rp);
|
|
|
|
if (audiodebug && np)
|
|
|
|
audio_print_params("Setting play params", &pp);
|
|
|
|
#endif
|
1997-04-30 01:01:33 +04:00
|
|
|
if (nr && (error = audio_check_params(&rp)))
|
|
|
|
return error;
|
|
|
|
if (np && (error = audio_check_params(&pp)))
|
|
|
|
return error;
|
1997-08-25 02:31:23 +04:00
|
|
|
setmode = 0;
|
1997-04-30 01:01:33 +04:00
|
|
|
if (nr) {
|
2003-10-02 11:15:20 +04:00
|
|
|
if (!cleared) {
|
1997-07-27 05:16:32 +04:00
|
|
|
audio_clear(sc);
|
2003-10-02 11:15:20 +04:00
|
|
|
cleared = 1;
|
|
|
|
}
|
|
|
|
modechange = 1;
|
1997-08-01 02:33:08 +04:00
|
|
|
rp.sw_code = 0;
|
|
|
|
rp.factor = 1;
|
2002-03-16 11:58:49 +03:00
|
|
|
rp.factor_denom = 1;
|
2002-03-07 17:37:02 +03:00
|
|
|
rp.hw_sample_rate = rp.sample_rate;
|
|
|
|
rp.hw_encoding = rp.encoding;
|
|
|
|
rp.hw_precision = rp.precision;
|
|
|
|
rp.hw_channels = rp.channels;
|
1997-08-25 02:31:23 +04:00
|
|
|
setmode |= AUMODE_RECORD;
|
1997-04-30 01:01:33 +04:00
|
|
|
}
|
|
|
|
if (np) {
|
2003-10-02 11:15:20 +04:00
|
|
|
if (!cleared) {
|
1995-02-21 04:35:58 +03:00
|
|
|
audio_clear(sc);
|
2003-10-02 11:15:20 +04:00
|
|
|
cleared = 1;
|
|
|
|
}
|
|
|
|
modechange = 1;
|
1997-08-01 02:33:08 +04:00
|
|
|
pp.sw_code = 0;
|
|
|
|
pp.factor = 1;
|
2002-03-16 11:58:49 +03:00
|
|
|
pp.factor_denom = 1;
|
2002-03-07 17:37:02 +03:00
|
|
|
pp.hw_sample_rate = pp.sample_rate;
|
|
|
|
pp.hw_encoding = pp.encoding;
|
|
|
|
pp.hw_precision = pp.precision;
|
|
|
|
pp.hw_channels = pp.channels;
|
1997-08-25 02:31:23 +04:00
|
|
|
setmode |= AUMODE_PLAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ai->mode != ~0) {
|
2003-10-02 11:15:20 +04:00
|
|
|
if (!cleared) {
|
1997-08-25 02:31:23 +04:00
|
|
|
audio_clear(sc);
|
2003-10-02 11:15:20 +04:00
|
|
|
cleared = 1;
|
|
|
|
}
|
|
|
|
modechange = 1;
|
1997-08-25 02:31:23 +04:00
|
|
|
sc->sc_mode = ai->mode;
|
|
|
|
if (sc->sc_mode & AUMODE_PLAY_ALL)
|
|
|
|
sc->sc_mode |= AUMODE_PLAY;
|
|
|
|
if ((sc->sc_mode & AUMODE_PLAY) && !sc->sc_full_duplex)
|
|
|
|
/* Play takes precedence */
|
|
|
|
sc->sc_mode &= ~AUMODE_RECORD;
|
|
|
|
}
|
|
|
|
|
1998-08-10 05:13:20 +04:00
|
|
|
if (modechange) {
|
2002-03-07 17:37:02 +03:00
|
|
|
int orig_p_channels, orig_p_rate;
|
|
|
|
int orig_r_channels, orig_r_rate;
|
|
|
|
int indep;
|
|
|
|
|
|
|
|
indep = hw->get_props(sc->hw_hdl) & AUDIO_PROP_INDEPENDENT;
|
1997-08-25 02:31:23 +04:00
|
|
|
if (!indep) {
|
|
|
|
if (setmode == AUMODE_RECORD)
|
|
|
|
pp = rp;
|
|
|
|
else if (setmode == AUMODE_PLAY)
|
|
|
|
rp = pp;
|
|
|
|
}
|
2002-03-07 17:37:02 +03:00
|
|
|
/* Some device drivers change channels/sample_rate and change
|
|
|
|
* no channels/sample_rate. */
|
|
|
|
orig_p_channels = pp.channels;
|
|
|
|
orig_p_rate = pp.sample_rate;
|
|
|
|
orig_r_channels = rp.channels;
|
|
|
|
orig_r_rate = rp.sample_rate;
|
1998-08-09 09:44:51 +04:00
|
|
|
error = hw->set_params(sc->hw_hdl, setmode,
|
|
|
|
sc->sc_mode & (AUMODE_PLAY | AUMODE_RECORD), &pp, &rp);
|
1996-02-20 14:47:22 +03:00
|
|
|
if (error)
|
1997-04-30 01:01:33 +04:00
|
|
|
return (error);
|
2002-03-07 17:37:02 +03:00
|
|
|
|
|
|
|
if (np) {
|
|
|
|
if (orig_p_channels != pp.channels)
|
|
|
|
pp.hw_channels = pp.channels;
|
|
|
|
if (orig_p_rate != pp.sample_rate)
|
|
|
|
pp.hw_sample_rate = pp.sample_rate;
|
|
|
|
error = auconv_check_params(&pp);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
if (nr) {
|
|
|
|
if (orig_r_channels != rp.channels)
|
|
|
|
rp.hw_channels = rp.channels;
|
|
|
|
if (orig_r_rate != rp.sample_rate)
|
|
|
|
rp.hw_sample_rate = rp.sample_rate;
|
|
|
|
error = auconv_check_params(&rp);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1997-08-25 02:31:23 +04:00
|
|
|
if (!indep) {
|
|
|
|
if (setmode == AUMODE_RECORD) {
|
|
|
|
pp.sample_rate = rp.sample_rate;
|
|
|
|
pp.encoding = rp.encoding;
|
|
|
|
pp.channels = rp.channels;
|
|
|
|
pp.precision = rp.precision;
|
|
|
|
} else if (setmode == AUMODE_PLAY) {
|
|
|
|
rp.sample_rate = pp.sample_rate;
|
|
|
|
rp.encoding = pp.encoding;
|
|
|
|
rp.channels = pp.channels;
|
|
|
|
rp.precision = pp.precision;
|
|
|
|
}
|
|
|
|
}
|
1998-08-09 08:54:44 +04:00
|
|
|
sc->sc_rparams = rp;
|
|
|
|
sc->sc_pparams = pp;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1997-08-19 03:20:09 +04:00
|
|
|
|
|
|
|
oldpblksize = sc->sc_pr.blksize;
|
|
|
|
oldrblksize = sc->sc_rr.blksize;
|
1997-07-27 05:16:32 +04:00
|
|
|
/* Play params can affect the record params, so recalculate blksize. */
|
|
|
|
if (nr || np) {
|
|
|
|
audio_calc_blksize(sc, AUMODE_RECORD);
|
|
|
|
audio_calc_blksize(sc, AUMODE_PLAY);
|
|
|
|
}
|
|
|
|
#ifdef AUDIO_DEBUG
|
|
|
|
if (audiodebug > 1 && nr)
|
|
|
|
audio_print_params("After setting record params", &sc->sc_rparams);
|
|
|
|
if (audiodebug > 1 && np)
|
|
|
|
audio_print_params("After setting play params", &sc->sc_pparams);
|
|
|
|
#endif
|
1997-04-30 01:01:33 +04:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
if (p->port != ~0) {
|
2003-10-02 11:15:20 +04:00
|
|
|
if (!cleared) {
|
1995-02-21 04:35:58 +03:00
|
|
|
audio_clear(sc);
|
2003-10-02 11:15:20 +04:00
|
|
|
cleared = 1;
|
|
|
|
}
|
1997-10-19 11:41:33 +04:00
|
|
|
error = au_set_port(sc, &sc->sc_outports, p->port);
|
1996-02-20 14:47:22 +03:00
|
|
|
if (error)
|
1995-02-21 04:35:58 +03:00
|
|
|
return(error);
|
|
|
|
}
|
|
|
|
if (r->port != ~0) {
|
2003-10-02 11:15:20 +04:00
|
|
|
if (!cleared) {
|
1995-02-21 04:35:58 +03:00
|
|
|
audio_clear(sc);
|
2003-10-02 11:15:20 +04:00
|
|
|
cleared = 1;
|
|
|
|
}
|
1997-10-19 11:41:33 +04:00
|
|
|
error = au_set_port(sc, &sc->sc_inports, r->port);
|
1996-02-20 14:47:22 +03:00
|
|
|
if (error)
|
1995-02-21 04:35:58 +03:00
|
|
|
return(error);
|
|
|
|
}
|
|
|
|
if (p->gain != ~0) {
|
1997-10-19 11:41:33 +04:00
|
|
|
au_get_gain(sc, &sc->sc_outports, &gain, &balance);
|
|
|
|
error = au_set_gain(sc, &sc->sc_outports, p->gain, balance);
|
1996-02-20 14:47:22 +03:00
|
|
|
if (error)
|
|
|
|
return(error);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
if (r->gain != ~0) {
|
1997-10-19 11:41:33 +04:00
|
|
|
au_get_gain(sc, &sc->sc_inports, &gain, &balance);
|
|
|
|
error = au_set_gain(sc, &sc->sc_inports, r->gain, balance);
|
|
|
|
if (error)
|
|
|
|
return(error);
|
|
|
|
}
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1997-10-19 11:41:33 +04:00
|
|
|
if (p->balance != (u_char)~0) {
|
|
|
|
au_get_gain(sc, &sc->sc_outports, &gain, &balance);
|
|
|
|
error = au_set_gain(sc, &sc->sc_outports, gain, p->balance);
|
|
|
|
if (error)
|
|
|
|
return(error);
|
|
|
|
}
|
|
|
|
if (r->balance != (u_char)~0) {
|
|
|
|
au_get_gain(sc, &sc->sc_inports, &gain, &balance);
|
|
|
|
error = au_set_gain(sc, &sc->sc_inports, gain, r->balance);
|
|
|
|
if (error)
|
|
|
|
return(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ai->monitor_gain != ~0 &&
|
|
|
|
sc->sc_monitor_port != -1) {
|
|
|
|
mixer_ctrl_t ct;
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1997-10-19 11:41:33 +04:00
|
|
|
ct.dev = sc->sc_monitor_port;
|
1995-05-08 20:06:38 +04:00
|
|
|
ct.type = AUDIO_MIXER_VALUE;
|
1995-02-21 04:35:58 +03:00
|
|
|
ct.un.value.num_channels = 1;
|
1997-10-19 11:41:33 +04:00
|
|
|
ct.un.value.level[AUDIO_MIXER_LEVEL_MONO] = ai->monitor_gain;
|
1999-05-30 04:21:08 +04:00
|
|
|
error = sc->hw_if->set_port(sc->hw_hdl, &ct);
|
1996-02-20 14:47:22 +03:00
|
|
|
if (error)
|
|
|
|
return(error);
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
1997-10-19 11:41:33 +04:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
if (p->pause != (u_char)~0) {
|
1997-07-27 05:16:32 +04:00
|
|
|
sc->sc_pr.pause = p->pause;
|
1997-12-03 04:01:19 +03:00
|
|
|
if (!p->pause && !sc->sc_pbus && (sc->sc_mode & AUMODE_PLAY)) {
|
1997-03-20 19:13:55 +03:00
|
|
|
s = splaudio();
|
1997-08-25 02:31:23 +04:00
|
|
|
error = audiostartp(sc);
|
1997-03-20 19:13:55 +03:00
|
|
|
splx(s);
|
1997-08-25 02:31:23 +04:00
|
|
|
if (error)
|
|
|
|
return error;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (r->pause != (u_char)~0) {
|
1997-07-27 05:16:32 +04:00
|
|
|
sc->sc_rr.pause = r->pause;
|
2002-03-23 20:17:10 +03:00
|
|
|
if (!r->pause && !sc->sc_rbus &&
|
1998-12-28 01:52:23 +03:00
|
|
|
(sc->sc_mode & AUMODE_RECORD)) {
|
1997-03-20 19:13:55 +03:00
|
|
|
s = splaudio();
|
1997-08-25 02:31:23 +04:00
|
|
|
error = audiostartr(sc);
|
1997-03-20 19:13:55 +03:00
|
|
|
splx(s);
|
1997-08-25 02:31:23 +04:00
|
|
|
if (error)
|
|
|
|
return error;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-03-20 19:13:55 +03:00
|
|
|
if (ai->blocksize != ~0) {
|
|
|
|
/* Block size specified explicitly. */
|
2003-10-02 11:15:20 +04:00
|
|
|
if (!cleared) {
|
1995-02-21 04:35:58 +03:00
|
|
|
audio_clear(sc);
|
2003-10-02 11:15:20 +04:00
|
|
|
cleared = 1;
|
|
|
|
}
|
1997-08-19 03:20:09 +04:00
|
|
|
if (ai->blocksize == 0) {
|
2003-10-02 11:15:20 +04:00
|
|
|
sc->sc_blkset = 0;
|
1997-08-19 03:20:09 +04:00
|
|
|
audio_calc_blksize(sc, AUMODE_RECORD);
|
|
|
|
audio_calc_blksize(sc, AUMODE_PLAY);
|
|
|
|
} else {
|
|
|
|
sc->sc_blkset = 1;
|
2003-10-02 11:15:20 +04:00
|
|
|
sc->sc_pr.blksize = sc->sc_rr.blksize = ai->blocksize;
|
1997-08-19 03:20:09 +04:00
|
|
|
}
|
1997-03-20 19:13:55 +03:00
|
|
|
}
|
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
if (ai->mode != ~0) {
|
1997-08-25 02:31:23 +04:00
|
|
|
if (sc->sc_mode & AUMODE_PLAY)
|
1995-02-21 04:35:58 +03:00
|
|
|
audio_init_play(sc);
|
1995-07-07 05:52:30 +04:00
|
|
|
if (sc->sc_mode & AUMODE_RECORD)
|
1995-02-21 04:35:58 +03:00
|
|
|
audio_init_record(sc);
|
|
|
|
}
|
1997-03-20 19:13:55 +03:00
|
|
|
|
1997-07-28 03:51:48 +04:00
|
|
|
if (hw->commit_settings) {
|
|
|
|
error = hw->commit_settings(sc->hw_hdl);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
1995-02-21 04:35:58 +03:00
|
|
|
|
|
|
|
if (cleared) {
|
1997-03-20 19:13:55 +03:00
|
|
|
s = splaudio();
|
1997-08-25 02:31:23 +04:00
|
|
|
error = audio_initbufs(sc);
|
|
|
|
if (error) goto err;
|
1997-08-19 03:20:09 +04:00
|
|
|
if (sc->sc_pr.blksize != oldpblksize ||
|
|
|
|
sc->sc_rr.blksize != oldrblksize)
|
|
|
|
audio_calcwater(sc);
|
1997-08-25 02:31:23 +04:00
|
|
|
if ((sc->sc_mode & AUMODE_PLAY) &&
|
|
|
|
pbus && !sc->sc_pbus)
|
|
|
|
error = audiostartp(sc);
|
2002-03-23 20:17:10 +03:00
|
|
|
if (!error &&
|
1997-08-25 02:31:23 +04:00
|
|
|
(sc->sc_mode & AUMODE_RECORD) &&
|
|
|
|
rbus && !sc->sc_rbus)
|
|
|
|
error = audiostartr(sc);
|
|
|
|
err:
|
1995-02-21 04:35:58 +03:00
|
|
|
splx(s);
|
1997-08-25 02:31:23 +04:00
|
|
|
if (error)
|
|
|
|
return error;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1997-08-07 03:08:26 +04:00
|
|
|
/* Change water marks after initializing the buffers. */
|
|
|
|
if (ai->hiwat != ~0) {
|
|
|
|
blks = ai->hiwat;
|
|
|
|
if (blks > sc->sc_pr.maxblks)
|
|
|
|
blks = sc->sc_pr.maxblks;
|
1997-10-08 02:40:43 +04:00
|
|
|
if (blks < 2)
|
|
|
|
blks = 2;
|
1997-08-07 03:08:26 +04:00
|
|
|
sc->sc_pr.usedhigh = blks * sc->sc_pr.blksize;
|
|
|
|
}
|
|
|
|
if (ai->lowat != ~0) {
|
|
|
|
blks = ai->lowat;
|
|
|
|
if (blks > sc->sc_pr.maxblks - 1)
|
|
|
|
blks = sc->sc_pr.maxblks - 1;
|
|
|
|
sc->sc_pr.usedlow = blks * sc->sc_pr.blksize;
|
|
|
|
}
|
1997-10-08 02:40:43 +04:00
|
|
|
if (ai->hiwat != ~0 || ai->lowat != ~0) {
|
|
|
|
if (sc->sc_pr.usedlow > sc->sc_pr.usedhigh - sc->sc_pr.blksize)
|
2002-03-23 20:17:10 +03:00
|
|
|
sc->sc_pr.usedlow =
|
1998-12-28 01:52:23 +03:00
|
|
|
sc->sc_pr.usedhigh - sc->sc_pr.blksize;
|
1997-10-08 02:40:43 +04:00
|
|
|
}
|
1997-08-07 03:08:26 +04:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1995-04-18 03:04:31 +04:00
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audiogetinfo(struct audio_softc *sc, struct audio_info *ai)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
|
|
|
struct audio_prinfo *r = &ai->record, *p = &ai->play;
|
|
|
|
struct audio_hw_if *hw = sc->hw_if;
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
if (hw == 0) /* HW has not attached */
|
|
|
|
return(ENXIO);
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1997-04-30 01:01:33 +04:00
|
|
|
p->sample_rate = sc->sc_pparams.sample_rate;
|
|
|
|
r->sample_rate = sc->sc_rparams.sample_rate;
|
|
|
|
p->channels = sc->sc_pparams.channels;
|
|
|
|
r->channels = sc->sc_rparams.channels;
|
|
|
|
p->precision = sc->sc_pparams.precision;
|
|
|
|
r->precision = sc->sc_rparams.precision;
|
|
|
|
p->encoding = sc->sc_pparams.encoding;
|
|
|
|
r->encoding = sc->sc_rparams.encoding;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-10-19 11:41:33 +04:00
|
|
|
r->port = au_get_port(sc, &sc->sc_inports);
|
|
|
|
p->port = au_get_port(sc, &sc->sc_outports);
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-10-19 11:41:33 +04:00
|
|
|
r->avail_ports = sc->sc_inports.allports;
|
|
|
|
p->avail_ports = sc->sc_outports.allports;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-10-19 11:41:33 +04:00
|
|
|
au_get_gain(sc, &sc->sc_inports, &r->gain, &r->balance);
|
|
|
|
au_get_gain(sc, &sc->sc_outports, &p->gain, &p->balance);
|
|
|
|
|
|
|
|
if (sc->sc_monitor_port != -1) {
|
|
|
|
mixer_ctrl_t ct;
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1997-10-19 11:41:33 +04:00
|
|
|
ct.dev = sc->sc_monitor_port;
|
|
|
|
ct.type = AUDIO_MIXER_VALUE;
|
|
|
|
ct.un.value.num_channels = 1;
|
|
|
|
if (sc->hw_if->get_port(sc->hw_hdl, &ct))
|
|
|
|
ai->monitor_gain = 0;
|
|
|
|
else
|
2002-03-23 20:17:10 +03:00
|
|
|
ai->monitor_gain =
|
1997-10-19 11:41:33 +04:00
|
|
|
ct.un.value.level[AUDIO_MIXER_LEVEL_MONO];
|
|
|
|
} else
|
|
|
|
ai->monitor_gain = 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
p->seek = sc->sc_pr.used;
|
|
|
|
r->seek = sc->sc_rr.used;
|
|
|
|
|
|
|
|
p->samples = sc->sc_pr.stamp - sc->sc_pr.drops;
|
|
|
|
r->samples = sc->sc_rr.stamp - sc->sc_rr.drops;
|
|
|
|
|
|
|
|
p->eof = sc->sc_eof;
|
|
|
|
r->eof = 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
p->pause = sc->sc_pr.pause;
|
|
|
|
r->pause = sc->sc_rr.pause;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
p->error = sc->sc_pr.drops != 0;
|
|
|
|
r->error = sc->sc_rr.drops != 0;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
p->waiting = r->waiting = 0; /* open never hangs */
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
p->open = (sc->sc_open & AUOPEN_WRITE) != 0;
|
|
|
|
r->open = (sc->sc_open & AUOPEN_READ) != 0;
|
|
|
|
|
|
|
|
p->active = sc->sc_pbus;
|
|
|
|
r->active = sc->sc_rbus;
|
|
|
|
|
1997-10-19 11:41:33 +04:00
|
|
|
p->buffer_size = sc->sc_pr.bufsize;
|
|
|
|
r->buffer_size = sc->sc_rr.bufsize;
|
|
|
|
|
1997-07-27 05:16:32 +04:00
|
|
|
ai->blocksize = sc->sc_pr.blksize;
|
|
|
|
ai->hiwat = sc->sc_pr.usedhigh / sc->sc_pr.blksize;
|
|
|
|
ai->lowat = sc->sc_pr.usedlow / sc->sc_pr.blksize;
|
1995-07-07 05:52:30 +04:00
|
|
|
ai->mode = sc->sc_mode;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mixer driver
|
|
|
|
*/
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
mixer_open(dev_t dev, struct audio_softc *sc, int flags, int ifmt,
|
2003-06-30 02:28:00 +04:00
|
|
|
struct proc *p)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1997-08-20 03:49:33 +04:00
|
|
|
if (!sc->hw_if)
|
|
|
|
return (ENXIO);
|
1995-02-21 04:35:58 +03:00
|
|
|
|
1999-09-09 14:24:39 +04:00
|
|
|
DPRINTF(("mixer_open: flags=0x%x sc=%p\n", flags, sc));
|
1995-02-21 04:35:58 +03:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1997-08-11 05:38:12 +04:00
|
|
|
/*
|
|
|
|
* Remove a process from those to be signalled on mixer activity.
|
|
|
|
*/
|
|
|
|
static void
|
2003-06-30 02:28:00 +04:00
|
|
|
mixer_remove(struct audio_softc *sc, struct proc *p)
|
1997-08-11 05:38:12 +04:00
|
|
|
{
|
|
|
|
struct mixer_asyncs **pm, *m;
|
|
|
|
|
|
|
|
for(pm = &sc->sc_async_mixer; *pm; pm = &(*pm)->next) {
|
|
|
|
if ((*pm)->proc == p) {
|
|
|
|
m = *pm;
|
|
|
|
*pm = m->next;
|
|
|
|
free(m, M_DEVBUF);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-08-19 01:19:02 +04:00
|
|
|
/*
|
2001-10-03 03:31:54 +04:00
|
|
|
* Signal all processes waiting for the mixer.
|
1997-08-19 01:19:02 +04:00
|
|
|
*/
|
|
|
|
static void
|
2001-10-03 03:31:54 +04:00
|
|
|
mixer_signal(struct audio_softc *sc)
|
1997-08-19 01:19:02 +04:00
|
|
|
{
|
|
|
|
struct mixer_asyncs *m;
|
|
|
|
|
|
|
|
for(m = sc->sc_async_mixer; m; m = m->next)
|
|
|
|
psignal(m->proc, SIGIO);
|
|
|
|
}
|
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
/*
|
|
|
|
* Close a mixer device
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
mixer_close(struct audio_softc *sc, int flags, int ifmt, struct proc *p)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
1999-09-09 14:24:39 +04:00
|
|
|
DPRINTF(("mixer_close: sc %p\n", sc));
|
2002-03-23 20:17:10 +03:00
|
|
|
|
2003-06-30 02:28:00 +04:00
|
|
|
mixer_remove(sc, p);
|
1997-08-11 05:38:12 +04:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
mixer_ioctl(struct audio_softc *sc, u_long cmd, caddr_t addr, int flag,
|
2003-06-30 02:28:00 +04:00
|
|
|
struct proc *p)
|
1995-02-21 04:35:58 +03:00
|
|
|
{
|
|
|
|
struct audio_hw_if *hw = sc->hw_if;
|
|
|
|
int error = EINVAL;
|
|
|
|
|
2000-03-01 03:44:35 +03:00
|
|
|
DPRINTF(("mixer_ioctl(%lu,'%c',%lu)\n",
|
|
|
|
IOCPARM_LEN(cmd), (char)IOCGROUP(cmd), cmd&0xff));
|
1995-02-21 04:35:58 +03:00
|
|
|
|
|
|
|
switch (cmd) {
|
1997-08-11 05:38:12 +04:00
|
|
|
case FIOASYNC:
|
2003-06-30 02:28:00 +04:00
|
|
|
mixer_remove(sc, p); /* remove old entry */
|
1997-08-11 05:38:12 +04:00
|
|
|
if (*(int *)addr) {
|
|
|
|
struct mixer_asyncs *ma;
|
1998-03-03 12:16:15 +03:00
|
|
|
ma = malloc(sizeof (struct mixer_asyncs),
|
2002-03-23 20:17:10 +03:00
|
|
|
M_DEVBUF, M_WAITOK);
|
1997-08-11 05:38:12 +04:00
|
|
|
ma->next = sc->sc_async_mixer;
|
2003-06-30 02:28:00 +04:00
|
|
|
ma->proc = p;
|
1997-08-11 05:38:12 +04:00
|
|
|
sc->sc_async_mixer = ma;
|
|
|
|
}
|
|
|
|
error = 0;
|
|
|
|
break;
|
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
case AUDIO_GETDEV:
|
1997-07-28 03:51:48 +04:00
|
|
|
DPRINTF(("AUDIO_GETDEV\n"));
|
|
|
|
error = hw->getdev(sc->hw_hdl, (audio_device_t *)addr);
|
|
|
|
break;
|
2002-03-23 20:17:10 +03:00
|
|
|
|
1995-02-21 04:35:58 +03:00
|
|
|
case AUDIO_MIXER_DEVINFO:
|
1997-07-28 03:51:48 +04:00
|
|
|
DPRINTF(("AUDIO_MIXER_DEVINFO\n"));
|
2000-12-29 13:00:08 +03:00
|
|
|
((mixer_devinfo_t *)addr)->un.v.delta = 0; /* default */
|
1997-07-28 03:51:48 +04:00
|
|
|
error = hw->query_devinfo(sc->hw_hdl, (mixer_devinfo_t *)addr);
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
|
|
|
case AUDIO_MIXER_READ:
|
1997-07-28 03:51:48 +04:00
|
|
|
DPRINTF(("AUDIO_MIXER_READ\n"));
|
|
|
|
error = hw->get_port(sc->hw_hdl, (mixer_ctrl_t *)addr);
|
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
|
|
|
case AUDIO_MIXER_WRITE:
|
1997-07-28 03:51:48 +04:00
|
|
|
DPRINTF(("AUDIO_MIXER_WRITE\n"));
|
|
|
|
error = hw->set_port(sc->hw_hdl, (mixer_ctrl_t *)addr);
|
|
|
|
if (!error && hw->commit_settings)
|
|
|
|
error = hw->commit_settings(sc->hw_hdl);
|
1997-08-19 01:19:02 +04:00
|
|
|
if (!error)
|
|
|
|
mixer_signal(sc);
|
1997-07-28 03:51:48 +04:00
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
|
|
|
|
default:
|
2001-10-04 00:48:41 +04:00
|
|
|
if (hw->dev_ioctl)
|
2003-06-30 02:28:00 +04:00
|
|
|
error = hw->dev_ioctl(sc->hw_hdl, cmd, addr, flag, p);
|
2001-10-04 00:48:41 +04:00
|
|
|
else
|
2001-10-03 04:04:47 +04:00
|
|
|
error = EINVAL;
|
1997-07-28 03:51:48 +04:00
|
|
|
break;
|
1995-02-21 04:35:58 +03:00
|
|
|
}
|
2000-03-01 03:44:35 +03:00
|
|
|
DPRINTF(("mixer_ioctl(%lu,'%c',%lu) result %d\n",
|
|
|
|
IOCPARM_LEN(cmd), (char)IOCGROUP(cmd), cmd&0xff, error));
|
1995-02-21 04:35:58 +03:00
|
|
|
return (error);
|
|
|
|
}
|
1998-08-28 11:44:12 +04:00
|
|
|
#endif /* NAUDIO > 0 */
|
|
|
|
|
|
|
|
#include "midi.h"
|
|
|
|
|
1998-12-20 17:26:44 +03:00
|
|
|
#if NAUDIO == 0 && (NMIDI > 0 || NMIDIBUS > 0)
|
1998-09-27 20:43:56 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/audioio.h>
|
|
|
|
#include <dev/audio_if.h>
|
|
|
|
#endif
|
|
|
|
|
1998-12-20 17:26:44 +03:00
|
|
|
#if NAUDIO > 0 || (NMIDI > 0 || NMIDIBUS > 0)
|
1998-08-28 11:44:12 +04:00
|
|
|
int
|
2001-10-03 03:31:54 +04:00
|
|
|
audioprint(void *aux, const char *pnp)
|
1998-08-28 11:44:12 +04:00
|
|
|
{
|
|
|
|
struct audio_attach_args *arg = aux;
|
|
|
|
const char *type;
|
|
|
|
|
|
|
|
if (pnp != NULL) {
|
|
|
|
switch (arg->type) {
|
|
|
|
case AUDIODEV_TYPE_AUDIO:
|
|
|
|
type = "audio";
|
|
|
|
break;
|
|
|
|
case AUDIODEV_TYPE_MIDI:
|
|
|
|
type = "midi";
|
|
|
|
break;
|
|
|
|
case AUDIODEV_TYPE_OPL:
|
|
|
|
type = "opl";
|
|
|
|
break;
|
|
|
|
case AUDIODEV_TYPE_MPU:
|
|
|
|
type = "mpu";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
panic("audioprint: unknown type %d", arg->type);
|
|
|
|
}
|
2003-01-01 03:10:15 +03:00
|
|
|
aprint_normal("%s at %s", type, pnp);
|
1998-08-28 11:44:12 +04:00
|
|
|
}
|
|
|
|
return (UNCONF);
|
|
|
|
}
|
|
|
|
|
1998-12-20 17:26:44 +03:00
|
|
|
#endif /* NAUDIO > 0 || (NMIDI > 0 || NMIDIBUS > 0) */
|