/* * Copyright (c) 1999 Cameron Grant * 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. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $FreeBSD$ */ #include #include #include #define OLDPCM_IOCTL static int getchns(struct snddev_info *d, int chan, struct pcm_channel **rdch, struct pcm_channel **wrch) { KASSERT((d->flags & SD_F_PRIO_SET) != SD_F_PRIO_SET, \ ("getchns: read and write both prioritised")); if ((d->flags & SD_F_SIMPLEX) && (d->flags & SD_F_PRIO_SET)) { *rdch = (d->flags & SD_F_PRIO_RD)? d->arec[chan] : d->fakechan; *wrch = (d->flags & SD_F_PRIO_WR)? d->aplay[chan] : d->fakechan; d->fakechan->flags |= CHN_F_BUSY; } else { *rdch = d->arec[chan]; *wrch = d->aplay[chan]; } return 0; } static void setchns(struct snddev_info *d, int chan) { KASSERT((d->flags & SD_F_PRIO_SET) != SD_F_PRIO_SET, \ ("getchns: read and write both prioritised")); d->flags |= SD_F_DIR_SET; } int dsp_open(struct snddev_info *d, int chan, int oflags, int devtype, pid_t pid) { struct pcm_channel *rdch, *wrch; u_int32_t fmt; /* decide default format */ switch (devtype) { case SND_DEV_DSP16: fmt = AFMT_S16_LE; break; case SND_DEV_DSP: fmt = AFMT_U8; break; case SND_DEV_AUDIO: fmt = AFMT_MU_LAW; break; case SND_DEV_NORESET: fmt = 0; break; default: panic("impossible devtype %d", devtype); } /* lock snddev so nobody else can monkey with it */ snd_mtxlock(d->lock); if (chan >= d->chancount) { /* not a valid channel, exit */ snd_mtxunlock(d->lock); return ENODEV; } if ((d->flags & SD_F_SIMPLEX) && (d->arec[chan] || d->aplay[chan])) { /* simplex device, already open, exit */ snd_mtxunlock(d->lock); return EBUSY; } /* if we get here, the open request is valid */ rdch = d->arec[chan]; wrch = d->aplay[chan]; if (oflags & FREAD) { /* open for read */ if (rdch == NULL) { /* not already open, try to get a channel */ rdch = pcm_chnalloc(d, PCMDIR_REC, pid); if (!rdch) { /* no channel available, exit */ snd_mtxunlock(d->lock); return EBUSY; } /* got a channel, already locked for us */ } else { /* already open for read, exit */ snd_mtxunlock(d->lock); return EBUSY; } } if (oflags & FWRITE) { /* open for write */ if (wrch == NULL) { /* not already open, try to get a channel */ wrch = pcm_chnalloc(d, PCMDIR_PLAY, pid); if (!wrch) { /* no channel available */ if (rdch && (oflags & FREAD)) { /* just opened a read channel, release it */ pcm_chnrelease(rdch); } /* exit */ snd_mtxunlock(d->lock); return EBUSY; } /* got a channel, already locked for us */ } else { /* already open for write */ if (rdch && (oflags & FREAD)) { /* just opened a read channel, release it */ pcm_chnrelease(rdch); } /* exit */ snd_mtxunlock(d->lock); return EBUSY; } } d->aplay[chan] = wrch; d->arec[chan] = rdch; snd_mtxunlock(d->lock); /* finished with snddev, new channels still locked */ /* bump refcounts, reset and unlock any channels that we just opened */ if (rdch) { if (oflags & FREAD) { chn_reset(rdch, fmt); if (oflags & O_NONBLOCK) rdch->flags |= CHN_F_NBIO; } else { CHN_LOCK(rdch); pcm_chnref(rdch, 1); } CHN_UNLOCK(rdch); } if (wrch) { if (oflags & FWRITE) { chn_reset(wrch, fmt); if (oflags & O_NONBLOCK) wrch->flags |= CHN_F_NBIO; } else { CHN_LOCK(wrch); pcm_chnref(wrch, 1); } CHN_UNLOCK(wrch); } return 0; } int dsp_close(struct snddev_info *d, int chan, int devtype) { struct pcm_channel *rdch, *wrch; int exit; snd_mtxlock(d->lock); rdch = d->arec[chan]; wrch = d->aplay[chan]; exit = 0; /* decrement refcount for each channel, exit if nonzero */ if (rdch) { CHN_LOCK(rdch); if (pcm_chnref(rdch, -1) > 0) { CHN_UNLOCK(rdch); exit = 1; } } if (wrch) { CHN_LOCK(wrch); if (pcm_chnref(wrch, -1) > 0) { CHN_UNLOCK(wrch); exit = 1; } } if (exit) { snd_mtxunlock(d->lock); return 0; } /* both refcounts are zero, abort and release */ if (d->fakechan) d->fakechan->flags = 0; d->aplay[chan] = NULL; d->arec[chan] = NULL; d->flags &= ~SD_F_TRANSIENT; snd_mtxunlock(d->lock); if (rdch) { chn_abort(rdch); rdch->flags &= ~(CHN_F_RUNNING | CHN_F_MAPPED | CHN_F_DEAD); chn_reset(rdch, 0); pcm_chnrelease(rdch); } if (wrch) { chn_flush(wrch); wrch->flags &= ~(CHN_F_RUNNING | CHN_F_MAPPED | CHN_F_DEAD); chn_reset(wrch, 0); pcm_chnrelease(wrch); } return 0; } int dsp_read(struct snddev_info *d, int chan, struct uio *buf, int flag) { struct pcm_channel *rdch, *wrch; int ret; snd_mtxlock(d->lock); if (!(d->flags & SD_F_PRIO_SET)) d->flags |= SD_F_PRIO_RD; if (!(d->flags & SD_F_DIR_SET)) setchns(d, chan); getchns(d, chan, &rdch, &wrch); CHN_LOCK(rdch); snd_mtxunlock(d->lock); KASSERT(rdch, ("dsp_read: nonexistant channel")); KASSERT(rdch->flags & CHN_F_BUSY, ("dsp_read: nonbusy channel")); if (rdch->flags & (CHN_F_MAPPED | CHN_F_DEAD)) { CHN_UNLOCK(rdch); return EINVAL; } if (!(rdch->flags & CHN_F_RUNNING)) rdch->flags |= CHN_F_RUNNING; ret = chn_read(rdch, buf); CHN_UNLOCK(rdch); return ret; } int dsp_write(struct snddev_info *d, int chan, struct uio *buf, int flag) { struct pcm_channel *rdch, *wrch; int ret; snd_mtxlock(d->lock); if (!(d->flags & SD_F_PRIO_SET)) d->flags |= SD_F_PRIO_WR; if (!(d->flags & SD_F_DIR_SET)) setchns(d, chan); getchns(d, chan, &rdch, &wrch); CHN_LOCK(wrch); snd_mtxunlock(d->lock); KASSERT(wrch, ("dsp_write: nonexistant channel")); KASSERT(wrch->flags & CHN_F_BUSY, ("dsp_write: nonbusy channel")); if (wrch->flags & (CHN_F_MAPPED | CHN_F_DEAD)) { CHN_UNLOCK(wrch); return EINVAL; } if (!(wrch->flags & CHN_F_RUNNING)) wrch->flags |= CHN_F_RUNNING; ret = chn_write(wrch, buf); CHN_UNLOCK(wrch); return ret; } int dsp_ioctl(struct snddev_info *d, int chan, u_long cmd, caddr_t arg) { int ret = 0, *arg_i = (int *)arg; u_long s; struct pcm_channel *wrch, *rdch; snd_mtxlock(d->lock); rdch = d->arec[chan]; wrch = d->aplay[chan]; if (rdch) CHN_LOCK(rdch); if (wrch) CHN_LOCK(wrch); snd_mtxunlock(d->lock); if (rdch && (rdch->flags & CHN_F_DEAD)) rdch = NULL; if (wrch && (wrch->flags & CHN_F_DEAD)) wrch = NULL; if (!(rdch || wrch)) return EINVAL; /* * all routines are called with int. blocked. Make sure that * ints are re-enabled when calling slow or blocking functions! */ s = spltty(); switch(cmd) { #ifdef OLDPCM_IOCTL /* * we start with the new ioctl interface. */ case AIONWRITE: /* how many bytes can write ? */ /* if (wrch && wrch->bufhard.dl) while (chn_wrfeed(wrch) == 0); */ *arg_i = wrch? sndbuf_getfree(wrch->bufsoft) : 0; break; case AIOSSIZE: /* set the current blocksize */ { struct snd_size *p = (struct snd_size *)arg; if (wrch) chn_setblocksize(wrch, 2, p->play_size); if (rdch) chn_setblocksize(rdch, 2, p->rec_size); } /* FALLTHROUGH */ case AIOGSIZE: /* get the current blocksize */ { struct snd_size *p = (struct snd_size *)arg; if (wrch) p->play_size = sndbuf_getblksz(wrch->bufsoft); if (rdch) p->rec_size = sndbuf_getblksz(rdch->bufsoft); } break; case AIOSFMT: { snd_chan_param *p = (snd_chan_param *)arg; if (wrch) { chn_setformat(wrch, p->play_format); chn_setspeed(wrch, p->play_rate); } if (rdch) { chn_setformat(rdch, p->rec_format); chn_setspeed(rdch, p->rec_rate); } } /* FALLTHROUGH */ case AIOGFMT: { snd_chan_param *p = (snd_chan_param *)arg; p->play_rate = wrch? wrch->speed : 0; p->rec_rate = rdch? rdch->speed : 0; p->play_format = wrch? wrch->format : 0; p->rec_format = rdch? rdch->format : 0; } break; case AIOGCAP: /* get capabilities */ { snd_capabilities *p = (snd_capabilities *)arg; struct pcmchan_caps *pcaps = NULL, *rcaps = NULL; if (rdch) rcaps = chn_getcaps(rdch); if (wrch) pcaps = chn_getcaps(wrch); p->rate_min = max(rcaps? rcaps->minspeed : 0, pcaps? pcaps->minspeed : 0); p->rate_max = min(rcaps? rcaps->maxspeed : 1000000, pcaps? pcaps->maxspeed : 1000000); p->bufsize = min(rdch? sndbuf_getsize(rdch->bufsoft) : 1000000, wrch? sndbuf_getsize(wrch->bufsoft) : 1000000); /* XXX bad on sb16 */ p->formats = (rdch? chn_getformats(rdch) : 0xffffffff) & (wrch? chn_getformats(wrch) : 0xffffffff); if (rdch && wrch) p->formats |= (d->flags & SD_F_SIMPLEX)? 0 : AFMT_FULLDUPLEX; p->mixers = 1; /* default: one mixer */ p->inputs = mix_getdevs(d->mixer); p->left = p->right = 100; } break; case AIOSTOP: if (*arg_i == AIOSYNC_PLAY && wrch) *arg_i = chn_abort(wrch); else if (*arg_i == AIOSYNC_CAPTURE && rdch) *arg_i = chn_abort(rdch); else { printf("AIOSTOP: bad channel 0x%x\n", *arg_i); *arg_i = 0; } break; case AIOSYNC: printf("AIOSYNC chan 0x%03lx pos %lu unimplemented\n", ((snd_sync_parm *)arg)->chan, ((snd_sync_parm *)arg)->pos); break; #endif /* * here follow the standard ioctls (filio.h etc.) */ case FIONREAD: /* get # bytes to read */ /* if (rdch && rdch->bufhard.dl) while (chn_rdfeed(rdch) == 0); */ *arg_i = rdch? sndbuf_getready(rdch->bufsoft) : 0; break; case FIOASYNC: /*set/clear async i/o */ DEB( printf("FIOASYNC\n") ; ) break; case SNDCTL_DSP_NONBLOCK: case FIONBIO: /* set/clear non-blocking i/o */ if (rdch) rdch->flags &= ~CHN_F_NBIO; if (wrch) wrch->flags &= ~CHN_F_NBIO; if (*arg_i) { if (rdch) rdch->flags |= CHN_F_NBIO; if (wrch) wrch->flags |= CHN_F_NBIO; } break; /* * Finally, here is the linux-compatible ioctl interface */ #define THE_REAL_SNDCTL_DSP_GETBLKSIZE _IOWR('P', 4, int) case THE_REAL_SNDCTL_DSP_GETBLKSIZE: case SNDCTL_DSP_GETBLKSIZE: if (wrch) *arg_i = sndbuf_getblksz(wrch->bufsoft); else if (rdch) *arg_i = sndbuf_getblksz(rdch->bufsoft); else *arg_i = 0; break ; case SNDCTL_DSP_SETBLKSIZE: RANGE(*arg_i, 16, 65536); if (wrch) chn_setblocksize(wrch, 2, *arg_i); if (rdch) chn_setblocksize(rdch, 2, *arg_i); break; case SNDCTL_DSP_RESET: DEB(printf("dsp reset\n")); if (wrch) chn_abort(wrch); if (rdch) chn_abort(rdch); break; case SNDCTL_DSP_SYNC: DEB(printf("dsp sync\n")); if (wrch) chn_sync(wrch, sndbuf_getsize(wrch->bufsoft) - 4); break; case SNDCTL_DSP_SPEED: if (wrch) ret = chn_setspeed(wrch, *arg_i); if (rdch && ret == 0) ret = chn_setspeed(rdch, *arg_i); /* fallthru */ case SOUND_PCM_READ_RATE: *arg_i = wrch? wrch->speed : rdch->speed; break; case SNDCTL_DSP_STEREO: if (wrch) ret = chn_setformat(wrch, (wrch->format & ~AFMT_STEREO) | ((*arg_i)? AFMT_STEREO : 0)); if (rdch && ret == 0) ret = chn_setformat(rdch, (rdch->format & ~AFMT_STEREO) | ((*arg_i)? AFMT_STEREO : 0)); *arg_i = ((wrch? wrch->format : rdch->format) & AFMT_STEREO)? 1 : 0; break; case SOUND_PCM_WRITE_CHANNELS: /* case SNDCTL_DSP_CHANNELS: ( == SOUND_PCM_WRITE_CHANNELS) */ if (*arg_i == 1 || *arg_i == 2) { if (wrch) ret = chn_setformat(wrch, (wrch->format & ~AFMT_STEREO) | ((*arg_i == 2)? AFMT_STEREO : 0)); if (rdch && ret == 0) ret = chn_setformat(rdch, (rdch->format & ~AFMT_STEREO) | ((*arg_i == 2)? AFMT_STEREO : 0)); *arg_i = ((wrch? wrch->format : rdch->format) & AFMT_STEREO)? 2 : 1; } else *arg_i = 0; break; case SOUND_PCM_READ_CHANNELS: *arg_i = ((wrch? wrch->format : rdch->format) & AFMT_STEREO)? 2 : 1; break; case SNDCTL_DSP_GETFMTS: /* returns a mask of supported fmts */ *arg_i = wrch? chn_getformats(wrch) : chn_getformats(rdch); break ; case SNDCTL_DSP_SETFMT: /* sets _one_ format */ if ((*arg_i != AFMT_QUERY)) { if (wrch) ret = chn_setformat(wrch, (*arg_i) | (wrch->format & AFMT_STEREO)); if (rdch && ret == 0) ret = chn_setformat(rdch, (*arg_i) | (rdch->format & AFMT_STEREO)); } *arg_i = (wrch? wrch->format : rdch->format) & ~AFMT_STEREO; break; case SNDCTL_DSP_SETFRAGMENT: DEB(printf("SNDCTL_DSP_SETFRAGMENT 0x%08x\n", *(int *)arg)); { struct pcm_channel *c = wrch? wrch : rdch; u_int32_t fragln = (*arg_i) & 0x0000ffff; u_int32_t maxfrags = ((*arg_i) & 0xffff0000) >> 16; u_int32_t fragsz; RANGE(fragln, 4, 16); fragsz = 1 << fragln; if (maxfrags == 0) maxfrags = CHN_2NDBUFMAXSIZE / fragsz; if (maxfrags < 2) { ret = EINVAL; break; } if (maxfrags * fragsz > CHN_2NDBUFMAXSIZE) maxfrags = CHN_2NDBUFMAXSIZE / fragsz; DEB(printf("SNDCTL_DSP_SETFRAGMENT %d frags, %d sz\n", maxfrags, fragsz)); if (rdch) ret = chn_setblocksize(rdch, maxfrags, fragsz); if (wrch && ret == 0) ret = chn_setblocksize(wrch, maxfrags, fragsz); fragsz = sndbuf_getblksz(c->bufsoft); fragln = 0; while (fragsz > 1) { fragln++; fragsz >>= 1; } *arg_i = (sndbuf_getblkcnt(c->bufsoft) << 16) | fragln; } break; case SNDCTL_DSP_GETISPACE: /* XXX Space for reading? Makes no sense... */ /* return the size of data available in the input queue */ { audio_buf_info *a = (audio_buf_info *)arg; if (rdch) { struct snd_dbuf *bs = rdch->bufsoft; chn_rdupdate(rdch); a->bytes = sndbuf_getfree(bs); a->fragments = a->bytes / sndbuf_getblksz(bs); a->fragstotal = sndbuf_getblkcnt(bs); a->fragsize = sndbuf_getblksz(bs); } } break; case SNDCTL_DSP_GETOSPACE: /* return space available in the output queue */ { audio_buf_info *a = (audio_buf_info *)arg; if (wrch) { struct snd_dbuf *bs = wrch->bufsoft; chn_wrupdate(wrch); a->bytes = sndbuf_getfree(bs); a->fragments = a->bytes / sndbuf_getblksz(bs); a->fragstotal = sndbuf_getblkcnt(bs); a->fragsize = sndbuf_getblksz(bs); } } break; case SNDCTL_DSP_GETIPTR: { count_info *a = (count_info *)arg; if (rdch) { struct snd_dbuf *bs = rdch->bufsoft; chn_rdupdate(rdch); a->bytes = sndbuf_gettotal(bs); a->blocks = sndbuf_getblocks(bs) - rdch->blocks; a->ptr = sndbuf_getreadyptr(bs); rdch->blocks = sndbuf_getblocks(bs); } else ret = EINVAL; } break; case SNDCTL_DSP_GETOPTR: { count_info *a = (count_info *)arg; if (wrch) { struct snd_dbuf *bs = wrch->bufsoft; chn_wrupdate(wrch); a->bytes = sndbuf_gettotal(bs); a->blocks = sndbuf_getblocks(bs) - wrch->blocks; a->ptr = sndbuf_getreadyptr(bs); wrch->blocks = sndbuf_getblocks(bs); } else ret = EINVAL; } break; case SNDCTL_DSP_GETCAPS: *arg_i = DSP_CAP_REALTIME | DSP_CAP_MMAP | DSP_CAP_TRIGGER; if (rdch && wrch && !(d->flags & SD_F_SIMPLEX)) *arg_i |= DSP_CAP_DUPLEX; break; case SOUND_PCM_READ_BITS: *arg_i = ((wrch? wrch->format : rdch->format) & AFMT_16BIT)? 16 : 8; break; case SNDCTL_DSP_SETTRIGGER: if (rdch) { rdch->flags &= ~(CHN_F_TRIGGERED | CHN_F_NOTRIGGER); if (*arg_i & PCM_ENABLE_INPUT) { rdch->flags |= CHN_F_TRIGGERED; chn_start(rdch, 1); } else rdch->flags |= CHN_F_NOTRIGGER; } if (wrch) { wrch->flags &= ~(CHN_F_TRIGGERED | CHN_F_NOTRIGGER); if (*arg_i & PCM_ENABLE_OUTPUT) { wrch->flags |= CHN_F_TRIGGERED; chn_start(wrch, 1); } else wrch->flags |= CHN_F_NOTRIGGER; } break; case SNDCTL_DSP_GETTRIGGER: *arg_i = 0; if (wrch && wrch->flags & CHN_F_TRIGGERED) *arg_i |= PCM_ENABLE_OUTPUT; if (rdch && rdch->flags & CHN_F_TRIGGERED) *arg_i |= PCM_ENABLE_INPUT; break; case SNDCTL_DSP_GETODELAY: if (wrch) { struct snd_dbuf *b = wrch->bufhard; struct snd_dbuf *bs = wrch->bufsoft; chn_wrupdate(wrch); *arg_i = sndbuf_getready(b) + sndbuf_getready(bs); } else ret = EINVAL; break; case SNDCTL_DSP_POST: if (wrch) { wrch->flags &= ~CHN_F_NOTRIGGER; chn_start(wrch, 1); } break; case SNDCTL_DSP_MAPINBUF: case SNDCTL_DSP_MAPOUTBUF: case SNDCTL_DSP_SETSYNCRO: /* undocumented */ case SNDCTL_DSP_SUBDIVIDE: case SOUND_PCM_WRITE_FILTER: case SOUND_PCM_READ_FILTER: /* dunno what these do, don't sound important */ default: DEB(printf("default ioctl chan%d fn 0x%08lx fail\n", chan, cmd)); ret = EINVAL; break; } if (wrch) CHN_UNLOCK(wrch); if (rdch) CHN_UNLOCK(rdch); splx(s); return ret; } int dsp_poll(struct snddev_info *d, int chan, int events, struct proc *p) { int ret, e; struct pcm_channel *wrch = NULL, *rdch = NULL; ret = 0; snd_mtxlock(d->lock); getchns(d, chan, &rdch, &wrch); if (rdch) CHN_LOCK(rdch); if (wrch) CHN_LOCK(wrch); if (wrch) { e = (events & (POLLOUT | POLLWRNORM)); if (e) ret |= chn_poll(wrch, e, p); CHN_UNLOCK(wrch); } if (rdch) { e = (events & (POLLIN | POLLRDNORM)); if (e) ret |= chn_poll(rdch, e, p); CHN_UNLOCK(rdch); } snd_mtxunlock(d->lock); return ret; } int dsp_mmap(struct snddev_info *d, int chan, vm_offset_t offset, int nprot) { struct pcm_channel *wrch = NULL, *rdch = NULL, *c = NULL; int ret; getchns(d, chan, &rdch, &wrch); #if 0 /* * XXX the linux api uses the nprot to select read/write bufhard * our vm system doesn't allow this, so force write bufhard */ if (1 || (wrch && (nprot & PROT_WRITE))) c = wrch; else if (rdch && (nprot & PROT_READ)) c = rdch; #else c = wrch; #endif if (c == NULL) return -1; CHN_LOCK(c); c->flags |= CHN_F_MAPPED; ret = atop(vtophys(((char *)sndbuf_getbuf(c->bufsoft)) + offset)); CHN_UNLOCK(c); return ret; }