2000-07-11 11:49:33 +00:00
|
|
|
/*
|
|
|
|
* Main midi driver for FreeBSD. This file provides the main
|
|
|
|
* entry points for probe/attach and all i/o demultiplexing, including
|
|
|
|
* default routines for generic devices.
|
|
|
|
*
|
|
|
|
* (C) 1999 Seigo Tanimura
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* For each card type a template "mididev_info" structure contains
|
|
|
|
* all the relevant parameters, both for configuration and runtime.
|
|
|
|
*
|
|
|
|
* In this file we build tables of pointers to the descriptors for
|
|
|
|
* the various supported cards. The generic probe routine scans
|
|
|
|
* the table(s) looking for a matching entry, then invokes the
|
|
|
|
* board-specific probe routine. If successful, a pointer to the
|
|
|
|
* correct mididev_info is stored in mididev_last_probed, for subsequent
|
|
|
|
* use in the attach routine. The generic attach routine copies
|
2001-02-26 07:36:24 +00:00
|
|
|
* the template to a permanent descriptor (midi_info and
|
2000-07-11 11:49:33 +00:00
|
|
|
* friends), initializes all generic parameters, and calls the
|
|
|
|
* board-specific attach routine.
|
|
|
|
*
|
|
|
|
* On device calls, the generic routines do the checks on unit and
|
|
|
|
* device parameters, then call the board-specific routines if
|
|
|
|
* available, or try to perform the task using the default code.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <dev/sound/midi/midi.h>
|
|
|
|
|
|
|
|
static devclass_t midi_devclass;
|
|
|
|
|
|
|
|
static d_open_t midiopen;
|
|
|
|
static d_close_t midiclose;
|
|
|
|
static d_ioctl_t midiioctl;
|
|
|
|
static d_read_t midiread;
|
|
|
|
static d_write_t midiwrite;
|
|
|
|
static d_poll_t midipoll;
|
|
|
|
|
|
|
|
/* These functions are local. */
|
|
|
|
static d_open_t midistat_open;
|
|
|
|
static d_close_t midistat_close;
|
|
|
|
static d_read_t midistat_read;
|
|
|
|
static int midi_initstatus(char *buf, int size);
|
|
|
|
static int midi_readstatus(char *buf, int *ptr, struct uio *uio);
|
|
|
|
|
|
|
|
#define CDEV_MAJOR MIDI_CDEV_MAJOR
|
|
|
|
static struct cdevsw midi_cdevsw = {
|
2003-03-03 12:15:54 +00:00
|
|
|
.d_open = midiopen,
|
|
|
|
.d_close = midiclose,
|
|
|
|
.d_read = midiread,
|
|
|
|
.d_write = midiwrite,
|
|
|
|
.d_ioctl = midiioctl,
|
|
|
|
.d_poll = midipoll,
|
|
|
|
.d_name = "midi",
|
|
|
|
.d_maj = CDEV_MAJOR,
|
2000-07-11 11:49:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* descriptors for active devices. also used as the public softc
|
|
|
|
* of a device.
|
|
|
|
*/
|
2002-01-04 01:13:49 +00:00
|
|
|
static TAILQ_HEAD(,_mididev_info) midi_info;
|
|
|
|
static int nmidi, nsynth;
|
2001-02-26 07:36:24 +00:00
|
|
|
/* Mutex to protect midi_info, nmidi and nsynth. */
|
2002-01-04 01:13:49 +00:00
|
|
|
static struct mtx midiinfo_mtx;
|
|
|
|
static int midiinfo_mtx_init;
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
/* These make the buffer for /dev/midistat */
|
2002-01-04 01:13:49 +00:00
|
|
|
static int midistatbusy;
|
|
|
|
static char midistatbuf[4096];
|
|
|
|
static int midistatptr;
|
|
|
|
|
|
|
|
SYSCTL_NODE(_hw, OID_AUTO, midi, CTLFLAG_RD, 0, "Midi driver");
|
|
|
|
|
|
|
|
int midi_debug;
|
|
|
|
SYSCTL_INT(_hw_midi, OID_AUTO, debug, CTLFLAG_RW, &midi_debug, 0, "");
|
|
|
|
|
|
|
|
midi_cmdtab cmdtab_midiioctl[] = {
|
|
|
|
{SNDCTL_MIDI_PRETIME, "SNDCTL_MIDI_PRETIME"},
|
|
|
|
{SNDCTL_MIDI_MPUMODE, "SNDCTL_MIDI_MPUMODE"},
|
|
|
|
{SNDCTL_MIDI_MPUCMD, "SNDCTL_MIDI_MPUCMD"},
|
|
|
|
{SNDCTL_SYNTH_INFO, "SNDCTL_SYNTH_INFO"},
|
|
|
|
{SNDCTL_MIDI_INFO, "SNDCTL_MIDI_INFO"},
|
|
|
|
{SNDCTL_SYNTH_MEMAVL, "SNDCTL_SYNTH_MEMAVL"},
|
|
|
|
{SNDCTL_FM_LOAD_INSTR, "SNDCTL_FM_LOAD_INSTR"},
|
|
|
|
{SNDCTL_FM_4OP_ENABLE, "SNDCTL_FM_4OP_ENABLE"},
|
|
|
|
{MIOSPASSTHRU, "MIOSPASSTHRU"},
|
|
|
|
{MIOGPASSTHRU, "MIOGPASSTHRU"},
|
|
|
|
{AIONWRITE, "AIONWRITE"},
|
|
|
|
{AIOGSIZE, "AIOGSIZE"},
|
|
|
|
{AIOSSIZE, "AIOSSIZE"},
|
|
|
|
{AIOGFMT, "AIOGFMT"},
|
|
|
|
{AIOSFMT, "AIOSFMT"},
|
|
|
|
{AIOGMIX, "AIOGMIX"},
|
|
|
|
{AIOSMIX, "AIOSMIX"},
|
|
|
|
{AIOSTOP, "AIOSTOP"},
|
|
|
|
{AIOSYNC, "AIOSYNC"},
|
|
|
|
{AIOGCAP, "AIOGCAP"},
|
|
|
|
{-1, NULL},
|
|
|
|
};
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
/*
|
2001-02-26 07:36:24 +00:00
|
|
|
* This is the generic init routine.
|
|
|
|
* Must be called after device-specific init.
|
2000-07-11 11:49:33 +00:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
midiinit(mididev_info *d, device_t dev)
|
|
|
|
{
|
|
|
|
int unit;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* initialize standard parameters for the device. This can be
|
|
|
|
* overridden by device-specific configurations but better do
|
|
|
|
* here the generic things.
|
|
|
|
*/
|
|
|
|
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midiinit: unit %d.\n", d->unit));
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
unit = d->unit;
|
2000-07-11 11:49:33 +00:00
|
|
|
d->softc = device_get_softc(dev);
|
|
|
|
d->dev = dev;
|
|
|
|
d->magic = MAGIC(d->unit); /* debugging... */
|
2001-02-26 07:36:24 +00:00
|
|
|
d->flags = 0;
|
|
|
|
d->fflags = 0;
|
|
|
|
d->midi_dbuf_in.unit_size = 1;
|
|
|
|
d->midi_dbuf_out.unit_size = 1;
|
|
|
|
d->midi_dbuf_passthru.unit_size = 1;
|
|
|
|
|
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
|
|
|
|
|
|
|
if (midi_devclass == NULL) {
|
|
|
|
midi_devclass = device_get_devclass(dev);
|
|
|
|
make_dev(&midi_cdevsw, MIDIMKMINOR(0, MIDI_DEV_STATUS),
|
|
|
|
UID_ROOT, GID_WHEEL, 0444, "midistat");
|
|
|
|
}
|
|
|
|
make_dev(&midi_cdevsw, MIDIMKMINOR(unit, MIDI_DEV_MIDIN),
|
|
|
|
UID_ROOT, GID_WHEEL, 0666, "midi%d", unit);
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
return 0 ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* a small utility function which, given a device number, returns
|
|
|
|
* a pointer to the associated mididev_info struct, and sets the unit
|
|
|
|
* number.
|
|
|
|
*/
|
|
|
|
mididev_info *
|
|
|
|
get_mididev_info(dev_t i_dev, int *unit)
|
|
|
|
{
|
|
|
|
int u;
|
|
|
|
|
|
|
|
if (MIDIDEV(i_dev) != MIDI_DEV_MIDIN)
|
|
|
|
return NULL;
|
|
|
|
u = MIDIUNIT(i_dev);
|
|
|
|
if (unit)
|
|
|
|
*unit = u;
|
|
|
|
|
2001-02-18 15:58:56 +00:00
|
|
|
return get_mididev_info_unit(u);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* a small utility function which, given a unit number, returns
|
|
|
|
* a pointer to the associated mididev_info struct.
|
|
|
|
*/
|
|
|
|
mididev_info *
|
|
|
|
get_mididev_info_unit(int unit)
|
|
|
|
{
|
2001-02-26 07:36:24 +00:00
|
|
|
mididev_info *md;
|
2001-02-18 15:58:56 +00:00
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
/* XXX */
|
|
|
|
if (!midiinfo_mtx_init) {
|
|
|
|
midiinfo_mtx_init = 1;
|
2002-04-04 21:03:38 +00:00
|
|
|
mtx_init(&midiinfo_mtx, "midinf", NULL, MTX_DEF);
|
2001-02-26 07:36:24 +00:00
|
|
|
TAILQ_INIT(&midi_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
mtx_lock(&midiinfo_mtx);
|
|
|
|
TAILQ_FOREACH(md, &midi_info, md_link) {
|
|
|
|
if (md->unit == unit)
|
|
|
|
break;
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_unlock(&midiinfo_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
return md;
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
2002-01-04 01:13:49 +00:00
|
|
|
/*
|
|
|
|
* a small utility function which, given a unit number, returns
|
|
|
|
* a pointer to the associated mididev_info struct with MDT_MIDI.
|
|
|
|
*/
|
|
|
|
mididev_info *
|
|
|
|
get_mididev_midi_unit(int unit)
|
|
|
|
{
|
|
|
|
mididev_info *md;
|
|
|
|
|
|
|
|
/* XXX */
|
|
|
|
if (!midiinfo_mtx_init) {
|
|
|
|
midiinfo_mtx_init = 1;
|
2002-04-04 21:03:38 +00:00
|
|
|
mtx_init(&midiinfo_mtx, "midinf", NULL, MTX_DEF);
|
2002-01-04 01:13:49 +00:00
|
|
|
TAILQ_INIT(&midi_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
mtx_lock(&midiinfo_mtx);
|
|
|
|
TAILQ_FOREACH(md, &midi_info, md_link) {
|
|
|
|
if (md->midiunit == unit)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mtx_unlock(&midiinfo_mtx);
|
|
|
|
|
|
|
|
return md;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* a small utility function which, given a unit number, returns
|
|
|
|
* a pointer to the associated mididev_info struct with MDT_SYNTH.
|
|
|
|
*/
|
|
|
|
mididev_info *
|
|
|
|
get_mididev_synth_unit(int unit)
|
|
|
|
{
|
|
|
|
mididev_info *md;
|
|
|
|
|
|
|
|
/* XXX */
|
|
|
|
if (!midiinfo_mtx_init) {
|
|
|
|
midiinfo_mtx_init = 1;
|
2002-04-04 21:03:38 +00:00
|
|
|
mtx_init(&midiinfo_mtx, "midinf", NULL, MTX_DEF);
|
2002-01-04 01:13:49 +00:00
|
|
|
TAILQ_INIT(&midi_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
mtx_lock(&midiinfo_mtx);
|
|
|
|
TAILQ_FOREACH(md, &midi_info, md_link) {
|
|
|
|
if (md->synthunit == unit)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mtx_unlock(&midiinfo_mtx);
|
|
|
|
|
|
|
|
return md;
|
|
|
|
}
|
|
|
|
|
2001-02-18 15:58:56 +00:00
|
|
|
/* Create a new midi device info structure. */
|
2001-02-26 07:36:24 +00:00
|
|
|
/* TODO: lock md, then exit. */
|
2001-02-18 15:58:56 +00:00
|
|
|
mididev_info *
|
2001-02-26 07:36:24 +00:00
|
|
|
create_mididev_info_unit(int type, mididev_info *mdinf, synthdev_info *syninf)
|
2001-02-18 15:58:56 +00:00
|
|
|
{
|
2001-02-26 07:36:24 +00:00
|
|
|
int unit;
|
|
|
|
mididev_info *md, *mdnew;
|
|
|
|
|
|
|
|
/* XXX */
|
|
|
|
if (!midiinfo_mtx_init) {
|
|
|
|
midiinfo_mtx_init = 1;
|
2002-04-04 21:03:38 +00:00
|
|
|
mtx_init(&midiinfo_mtx, "midinf", NULL, MTX_DEF);
|
2001-02-26 07:36:24 +00:00
|
|
|
TAILQ_INIT(&midi_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* As malloc(9) might block, allocate mididev_info now. */
|
2003-02-19 05:47:46 +00:00
|
|
|
mdnew = malloc(sizeof(mididev_info), M_DEVBUF, M_WAITOK | M_ZERO);
|
2001-02-26 07:36:24 +00:00
|
|
|
if (mdnew == NULL)
|
|
|
|
return NULL;
|
|
|
|
bcopy(mdinf, mdnew, sizeof(mididev_info));
|
|
|
|
bcopy(syninf, &mdnew->synth, sizeof(synthdev_info));
|
|
|
|
midibuf_init(&mdnew->midi_dbuf_in);
|
|
|
|
midibuf_init(&mdnew->midi_dbuf_out);
|
|
|
|
midibuf_init(&mdnew->midi_dbuf_passthru);
|
2002-04-04 21:03:38 +00:00
|
|
|
mtx_init(&mdnew->flagqueue_mtx, "midflq", NULL, MTX_DEF);
|
|
|
|
mtx_init(&mdnew->synth.vc_mtx, "synsvc", NULL, MTX_DEF);
|
|
|
|
mtx_init(&mdnew->synth.status_mtx, "synsst", NULL, MTX_DEF);
|
2001-02-26 07:36:24 +00:00
|
|
|
|
|
|
|
mtx_lock(&midiinfo_mtx);
|
|
|
|
|
2001-02-18 15:58:56 +00:00
|
|
|
switch (type) {
|
|
|
|
case MDT_MIDI:
|
2002-01-04 01:13:49 +00:00
|
|
|
mdnew->midiunit = nmidi;
|
|
|
|
mdnew->synthunit = nmidi;
|
2001-02-18 15:58:56 +00:00
|
|
|
nmidi++;
|
|
|
|
break;
|
|
|
|
case MDT_SYNTH:
|
2002-01-04 01:13:49 +00:00
|
|
|
mdnew->midiunit = -1;
|
|
|
|
mdnew->synthunit = nsynth;
|
2001-02-18 15:58:56 +00:00
|
|
|
nsynth++;
|
|
|
|
break;
|
|
|
|
default:
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_unlock(&midiinfo_mtx);
|
|
|
|
midibuf_destroy(&mdnew->midi_dbuf_in);
|
|
|
|
midibuf_destroy(&mdnew->midi_dbuf_out);
|
|
|
|
midibuf_destroy(&mdnew->midi_dbuf_passthru);
|
|
|
|
mtx_destroy(&mdnew->flagqueue_mtx);
|
|
|
|
mtx_destroy(&mdnew->synth.vc_mtx);
|
|
|
|
mtx_destroy(&mdnew->synth.status_mtx);
|
|
|
|
free(mdnew, M_DEVBUF);
|
2001-02-18 15:58:56 +00:00
|
|
|
panic("unsupported device type");
|
2001-02-26 07:36:24 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2002-01-04 01:13:49 +00:00
|
|
|
mdnew->mdtype = type;
|
2001-02-26 07:36:24 +00:00
|
|
|
|
|
|
|
for (unit = 0 ; ; unit++) {
|
|
|
|
TAILQ_FOREACH(md, &midi_info, md_link) {
|
|
|
|
if (md->unit == unit)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (md == NULL)
|
|
|
|
break;
|
2001-02-18 15:58:56 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
mdnew->unit = unit;
|
|
|
|
mtx_lock(&mdnew->flagqueue_mtx);
|
|
|
|
TAILQ_INSERT_TAIL(&midi_info, mdnew, md_link);
|
|
|
|
|
|
|
|
mtx_unlock(&midiinfo_mtx);
|
|
|
|
|
|
|
|
return mdnew;
|
2001-02-18 15:58:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the number of configured devices. */
|
|
|
|
int
|
|
|
|
mididev_info_number(void)
|
|
|
|
{
|
|
|
|
return nmidi + nsynth;
|
|
|
|
}
|
|
|
|
|
2002-01-04 01:13:49 +00:00
|
|
|
/* Return the number of configured midi devices. */
|
|
|
|
int
|
|
|
|
mididev_midi_number(void)
|
|
|
|
{
|
|
|
|
return nmidi;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the number of configured synth devices. */
|
|
|
|
int
|
|
|
|
mididev_synth_number(void)
|
|
|
|
{
|
|
|
|
return nsynth;
|
|
|
|
}
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
/*
|
|
|
|
* here are the switches for the main functions. The switches do
|
|
|
|
* all necessary checks on the device number to make sure
|
|
|
|
* that the device is configured. They also provide some default
|
|
|
|
* functionalities so that device-specific drivers have to deal
|
|
|
|
* only with special cases.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
midiopen(dev_t i_dev, int flags, int mode, struct thread *td)
|
2000-07-11 11:49:33 +00:00
|
|
|
{
|
2001-02-26 07:36:24 +00:00
|
|
|
int ret;
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
switch (MIDIDEV(i_dev)) {
|
|
|
|
case MIDI_DEV_MIDIN:
|
2001-09-12 08:38:13 +00:00
|
|
|
ret = midi_open(i_dev, flags, mode, td);
|
2001-02-26 07:36:24 +00:00
|
|
|
break;
|
2000-07-11 11:49:33 +00:00
|
|
|
case MIDI_DEV_STATUS:
|
2001-09-12 08:38:13 +00:00
|
|
|
ret = midistat_open(i_dev, flags, mode, td);
|
2001-02-26 07:36:24 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = ENXIO;
|
|
|
|
break;
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
return (ret);
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
midiclose(dev_t i_dev, int flags, int mode, struct thread *td)
|
2000-07-11 11:49:33 +00:00
|
|
|
{
|
2001-02-26 07:36:24 +00:00
|
|
|
int ret;
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
switch (MIDIDEV(i_dev)) {
|
|
|
|
case MIDI_DEV_MIDIN:
|
2001-09-12 08:38:13 +00:00
|
|
|
ret = midi_close(i_dev, flags, mode, td);
|
2001-02-26 07:36:24 +00:00
|
|
|
break;
|
2000-07-11 11:49:33 +00:00
|
|
|
case MIDI_DEV_STATUS:
|
2001-09-12 08:38:13 +00:00
|
|
|
ret = midistat_close(i_dev, flags, mode, td);
|
2001-02-26 07:36:24 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = ENXIO;
|
|
|
|
break;
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
return (ret);
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
midiread(dev_t i_dev, struct uio * buf, int flag)
|
|
|
|
{
|
2001-02-26 07:36:24 +00:00
|
|
|
int ret;
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
switch (MIDIDEV(i_dev)) {
|
|
|
|
case MIDI_DEV_MIDIN:
|
2001-02-26 07:36:24 +00:00
|
|
|
ret = midi_read(i_dev, buf, flag);
|
|
|
|
break;
|
2000-07-11 11:49:33 +00:00
|
|
|
case MIDI_DEV_STATUS:
|
2001-02-26 07:36:24 +00:00
|
|
|
ret = midistat_read(i_dev, buf, flag);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = ENXIO;
|
|
|
|
break;
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
return (ret);
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
midiwrite(dev_t i_dev, struct uio * buf, int flag)
|
|
|
|
{
|
2001-02-26 07:36:24 +00:00
|
|
|
int ret;
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
switch (MIDIDEV(i_dev)) {
|
|
|
|
case MIDI_DEV_MIDIN:
|
2001-02-26 07:36:24 +00:00
|
|
|
ret = midi_write(i_dev, buf, flag);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = ENXIO;
|
|
|
|
break;
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
return (ret);
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
midiioctl(dev_t i_dev, u_long cmd, caddr_t arg, int mode, struct thread *td)
|
2000-07-11 11:49:33 +00:00
|
|
|
{
|
2001-02-26 07:36:24 +00:00
|
|
|
int ret;
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
switch (MIDIDEV(i_dev)) {
|
|
|
|
case MIDI_DEV_MIDIN:
|
2001-09-12 08:38:13 +00:00
|
|
|
ret = midi_ioctl(i_dev, cmd, arg, mode, td);
|
2001-02-26 07:36:24 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = ENXIO;
|
|
|
|
break;
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
return (ret);
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
midipoll(dev_t i_dev, int events, struct thread *td)
|
2000-07-11 11:49:33 +00:00
|
|
|
{
|
2001-02-26 07:36:24 +00:00
|
|
|
int ret;
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
switch (MIDIDEV(i_dev)) {
|
|
|
|
case MIDI_DEV_MIDIN:
|
2001-09-12 08:38:13 +00:00
|
|
|
ret = midi_poll(i_dev, events, td);
|
2001-02-26 07:36:24 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = ENXIO;
|
|
|
|
break;
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
return (ret);
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Followings are the generic methods in midi drivers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
midi_open(dev_t i_dev, int flags, int mode, struct thread *td)
|
2000-07-11 11:49:33 +00:00
|
|
|
{
|
2001-02-26 07:36:24 +00:00
|
|
|
int dev, unit, ret;
|
2000-07-11 11:49:33 +00:00
|
|
|
mididev_info *d;
|
|
|
|
|
|
|
|
dev = minor(i_dev);
|
|
|
|
d = get_mididev_info(i_dev, &unit);
|
|
|
|
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_open: unit %d, flags 0x%x.\n", unit, flags));
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
if (d == NULL)
|
|
|
|
return (ENXIO);
|
|
|
|
|
|
|
|
/* Mark this device busy. */
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
device_busy(d->dev);
|
|
|
|
if ((d->flags & MIDI_F_BUSY) != 0) {
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
2002-01-04 01:13:49 +00:00
|
|
|
printf("midi_open: unit %d is busy.\n", unit);
|
2000-07-11 11:49:33 +00:00
|
|
|
return (EBUSY);
|
|
|
|
}
|
2002-01-04 01:13:49 +00:00
|
|
|
d->fflags = flags;
|
2000-07-11 11:49:33 +00:00
|
|
|
d->flags |= MIDI_F_BUSY;
|
|
|
|
d->flags &= ~(MIDI_F_READING | MIDI_F_WRITING);
|
2002-01-04 01:13:49 +00:00
|
|
|
if ((d->fflags & O_NONBLOCK) != 0)
|
|
|
|
d->flags |= MIDI_F_NBIO;
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
/* Init the queue. */
|
2001-02-26 07:36:24 +00:00
|
|
|
if ((flags & FREAD) != 0)
|
|
|
|
midibuf_clear(&d->midi_dbuf_in);
|
|
|
|
if ((flags & FWRITE) != 0) {
|
|
|
|
midibuf_clear(&d->midi_dbuf_out);
|
|
|
|
midibuf_clear(&d->midi_dbuf_passthru);
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
if (d->open == NULL)
|
|
|
|
ret = 0;
|
|
|
|
else
|
2001-09-12 08:38:13 +00:00
|
|
|
ret = d->open(i_dev, flags, mode, td);
|
2000-07-11 11:49:33 +00:00
|
|
|
|
2002-01-04 01:13:49 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
|
|
|
|
|
|
|
/* Begin recording if nonblocking. */
|
|
|
|
if ((d->flags & (MIDI_F_READING | MIDI_F_NBIO)) == MIDI_F_NBIO && (d->fflags & FREAD) != 0)
|
|
|
|
d->callback(d, MIDI_CB_START | MIDI_CB_RD);
|
|
|
|
|
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
|
|
|
|
|
|
|
MIDI_DEBUG(printf("midi_open: opened.\n"));
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
midi_close(dev_t i_dev, int flags, int mode, struct thread *td)
|
2000-07-11 11:49:33 +00:00
|
|
|
{
|
2001-02-26 07:36:24 +00:00
|
|
|
int dev, unit, ret;
|
2000-07-11 11:49:33 +00:00
|
|
|
mididev_info *d;
|
|
|
|
|
|
|
|
dev = minor(i_dev);
|
|
|
|
d = get_mididev_info(i_dev, &unit);
|
|
|
|
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_close: unit %d.\n", unit));
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
if (d == NULL)
|
|
|
|
return (ENXIO);
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
|
|
|
|
|
|
|
/* Stop recording and playing. */
|
|
|
|
if ((d->flags & MIDI_F_READING) != 0)
|
|
|
|
d->callback(d, MIDI_CB_ABORT | MIDI_CB_RD);
|
|
|
|
if ((d->flags & MIDI_F_WRITING) != 0)
|
|
|
|
d->callback(d, MIDI_CB_ABORT | MIDI_CB_WR);
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
/* Clear the queues. */
|
|
|
|
if ((d->fflags & FREAD) != 0)
|
2001-02-26 07:36:24 +00:00
|
|
|
midibuf_clear(&d->midi_dbuf_in);
|
2000-07-11 11:49:33 +00:00
|
|
|
if ((d->fflags & FWRITE) != 0) {
|
2001-02-26 07:36:24 +00:00
|
|
|
midibuf_clear(&d->midi_dbuf_out);
|
|
|
|
midibuf_clear(&d->midi_dbuf_passthru);
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Stop playing and unmark this device busy. */
|
|
|
|
d->flags &= ~MIDI_F_BUSY;
|
|
|
|
d->fflags = 0;
|
|
|
|
|
|
|
|
device_unbusy(d->dev);
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
if (d->close == NULL)
|
|
|
|
ret = 0;
|
|
|
|
else
|
2001-09-12 08:38:13 +00:00
|
|
|
ret = d->close(i_dev, flags, mode, td);
|
2000-07-11 11:49:33 +00:00
|
|
|
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_close: closed.\n"));
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
midi_read(dev_t i_dev, struct uio * buf, int flag)
|
|
|
|
{
|
2002-01-01 17:36:26 +00:00
|
|
|
int dev, unit, len, lenr, ret;
|
2000-07-11 11:49:33 +00:00
|
|
|
mididev_info *d ;
|
2002-01-01 17:36:26 +00:00
|
|
|
u_char *uiobuf;
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
dev = minor(i_dev);
|
|
|
|
|
|
|
|
d = get_mididev_info(i_dev, &unit);
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_read: unit %d, resid %d.\n", unit, buf->uio_resid));
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
if (d == NULL)
|
|
|
|
return (ENXIO);
|
|
|
|
|
|
|
|
ret = 0;
|
2001-02-26 07:36:24 +00:00
|
|
|
|
2002-01-01 17:36:26 +00:00
|
|
|
len = buf->uio_resid;
|
|
|
|
lenr = 0;
|
|
|
|
|
2003-02-19 05:47:46 +00:00
|
|
|
uiobuf = (u_char *)malloc(len, M_DEVBUF, M_WAITOK | M_ZERO);
|
2002-01-01 17:36:26 +00:00
|
|
|
if (uiobuf == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
/* Begin recording. */
|
|
|
|
d->callback(d, MIDI_CB_START | MIDI_CB_RD);
|
|
|
|
|
|
|
|
/* Have we got the data to read? */
|
|
|
|
if ((d->flags & MIDI_F_NBIO) != 0 && d->midi_dbuf_in.rl == 0)
|
|
|
|
ret = EAGAIN;
|
2002-01-04 01:13:49 +00:00
|
|
|
else {
|
|
|
|
if ((d->flags & MIDI_F_NBIO) != 0 && len > d->midi_dbuf_in.rl)
|
|
|
|
len = d->midi_dbuf_in.rl;
|
2002-01-01 17:36:26 +00:00
|
|
|
ret = midibuf_seqread(&d->midi_dbuf_in, uiobuf, len, &lenr,
|
|
|
|
d->callback, d, MIDI_CB_START | MIDI_CB_RD,
|
|
|
|
&d->flagqueue_mtx);
|
2002-01-04 01:13:49 +00:00
|
|
|
}
|
2000-07-11 11:49:33 +00:00
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
|
2002-01-01 17:36:26 +00:00
|
|
|
if (lenr > 0)
|
|
|
|
ret = uiomove(uiobuf, lenr, buf);
|
|
|
|
|
|
|
|
free(uiobuf, M_DEVBUF);
|
|
|
|
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_read: ret %d, resid %d.\n", ret, buf->uio_resid));
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
midi_write(dev_t i_dev, struct uio * buf, int flag)
|
|
|
|
{
|
2002-01-01 17:36:26 +00:00
|
|
|
int dev, unit, len, len2, lenw, ret;
|
2000-07-11 11:49:33 +00:00
|
|
|
mididev_info *d;
|
2002-01-01 17:36:26 +00:00
|
|
|
u_char *uiobuf;
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
dev = minor(i_dev);
|
|
|
|
d = get_mididev_info(i_dev, &unit);
|
|
|
|
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_write: unit %d.\n", unit));
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
if (d == NULL)
|
|
|
|
return (ENXIO);
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
2002-01-01 17:36:26 +00:00
|
|
|
len = buf->uio_resid;
|
|
|
|
lenw = 0;
|
|
|
|
|
2003-02-19 05:47:46 +00:00
|
|
|
uiobuf = (u_char *)malloc(len, M_DEVBUF, M_WAITOK | M_ZERO);
|
2002-01-01 17:36:26 +00:00
|
|
|
if (uiobuf == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
ret = uiomove(uiobuf, len, buf);
|
|
|
|
if (ret != 0) {
|
|
|
|
free(uiobuf, M_DEVBUF);
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
/* Have we got the data to write? */
|
2001-02-26 07:36:24 +00:00
|
|
|
if ((d->flags & MIDI_F_NBIO) != 0 && d->midi_dbuf_out.fl == 0) {
|
|
|
|
/* Begin playing. */
|
|
|
|
d->callback(d, MIDI_CB_START | MIDI_CB_WR);
|
2000-07-11 11:49:33 +00:00
|
|
|
ret = EAGAIN;
|
2001-02-26 07:36:24 +00:00
|
|
|
} else {
|
2002-01-01 17:36:26 +00:00
|
|
|
len2 = len;
|
|
|
|
if ((d->flags & MIDI_F_NBIO) != 0 && len2 > d->midi_dbuf_out.fl)
|
|
|
|
len2 = d->midi_dbuf_out.fl;
|
|
|
|
ret = midibuf_seqwrite(&d->midi_dbuf_out, uiobuf, len2, &lenw,
|
|
|
|
d->callback, d, MIDI_CB_START | MIDI_CB_WR,
|
|
|
|
&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
|
2002-01-01 17:36:26 +00:00
|
|
|
free(uiobuf, M_DEVBUF);
|
|
|
|
buf->uio_resid = len - lenw;
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* generic midi ioctl. Functions of the default driver can be
|
|
|
|
* overridden by the device-specific ioctl call.
|
|
|
|
* If a device-specific call returns ENOSYS (Function not implemented),
|
|
|
|
* the default driver is called. Otherwise, the returned value
|
|
|
|
* is passed up.
|
|
|
|
*
|
|
|
|
* The default handler, for many parameters, sets the value in the
|
|
|
|
* descriptor, sets MIDI_F_INIT, and calls the callback function with
|
|
|
|
* reason INIT. If successful, the callback returns 1 and the caller
|
|
|
|
* can update the parameter.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
midi_ioctl(dev_t i_dev, u_long cmd, caddr_t arg, int mode, struct thread *td)
|
2000-07-11 11:49:33 +00:00
|
|
|
{
|
|
|
|
int ret = ENOSYS, dev, unit;
|
|
|
|
mididev_info *d;
|
|
|
|
struct snd_size *sndsize;
|
2002-01-04 01:13:49 +00:00
|
|
|
snd_sync_parm *sp;
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
dev = minor(i_dev);
|
|
|
|
d = get_mididev_info(i_dev, &unit);
|
|
|
|
|
|
|
|
if (d == NULL)
|
|
|
|
return (ENXIO);
|
|
|
|
|
|
|
|
if (d->ioctl)
|
2001-09-12 08:38:13 +00:00
|
|
|
ret = d->ioctl(i_dev, cmd, arg, mode, td);
|
2000-07-11 11:49:33 +00:00
|
|
|
if (ret != ENOSYS)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* pass control to the default ioctl handler. Set ret to 0 now.
|
|
|
|
*/
|
|
|
|
ret = 0;
|
|
|
|
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_ioctl: unit %d, cmd %s.\n", unit, midi_cmdname(cmd, cmdtab_midiioctl)));
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
/*
|
|
|
|
* all routines are called with int. blocked. Make sure that
|
|
|
|
* ints are re-enabled when calling slow or blocking functions!
|
|
|
|
*/
|
|
|
|
switch(cmd) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* we start with the new ioctl interface.
|
|
|
|
*/
|
|
|
|
case AIONWRITE: /* how many bytes can write ? */
|
2002-01-04 01:13:49 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
*(int *)arg = d->midi_dbuf_out.fl;
|
2002-01-04 01:13:49 +00:00
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
|
|
|
MIDI_DEBUG(printf("midi_ioctl: fl %d.\n", *(int *)arg));
|
2000-07-11 11:49:33 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AIOSSIZE: /* set the current blocksize */
|
|
|
|
sndsize = (struct snd_size *)arg;
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_ioctl: play %d, rec %d.\n", sndsize->play_size, sndsize->rec_size));
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
if (sndsize->play_size <= d->midi_dbuf_out.unit_size && sndsize->rec_size <= d->midi_dbuf_in.unit_size) {
|
|
|
|
d->midi_dbuf_out.blocksize = d->midi_dbuf_out.unit_size;
|
|
|
|
d->midi_dbuf_in.blocksize = d->midi_dbuf_in.unit_size;
|
2001-02-26 07:36:24 +00:00
|
|
|
sndsize->play_size = d->midi_dbuf_out.blocksize;
|
|
|
|
sndsize->rec_size = d->midi_dbuf_in.blocksize;
|
|
|
|
d->flags &= ~MIDI_F_HAS_SIZE;
|
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (sndsize->play_size > d->midi_dbuf_out.bufsize / 4)
|
|
|
|
sndsize->play_size = d->midi_dbuf_out.bufsize / 4;
|
|
|
|
if (sndsize->rec_size > d->midi_dbuf_in.bufsize / 4)
|
|
|
|
sndsize->rec_size = d->midi_dbuf_in.bufsize / 4;
|
|
|
|
/* Round up the size to the multiple of EV_SZ. */
|
|
|
|
d->midi_dbuf_out.blocksize =
|
|
|
|
((sndsize->play_size + d->midi_dbuf_out.unit_size - 1)
|
|
|
|
/ d->midi_dbuf_out.unit_size) * d->midi_dbuf_out.unit_size;
|
|
|
|
d->midi_dbuf_in.blocksize =
|
|
|
|
((sndsize->rec_size + d->midi_dbuf_in.unit_size - 1)
|
|
|
|
/ d->midi_dbuf_in.unit_size) * d->midi_dbuf_in.unit_size;
|
2001-02-26 07:36:24 +00:00
|
|
|
sndsize->play_size = d->midi_dbuf_out.blocksize;
|
|
|
|
sndsize->rec_size = d->midi_dbuf_in.blocksize;
|
2000-07-11 11:49:33 +00:00
|
|
|
d->flags |= MIDI_F_HAS_SIZE;
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
}
|
2001-02-26 07:36:24 +00:00
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
case AIOGSIZE: /* get the current blocksize */
|
|
|
|
sndsize = (struct snd_size *)arg;
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
sndsize->play_size = d->midi_dbuf_out.blocksize;
|
|
|
|
sndsize->rec_size = d->midi_dbuf_in.blocksize;
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_ioctl: play %d, rec %d.\n", sndsize->play_size, sndsize->rec_size));
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AIOSTOP:
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
if (*(int *)arg == AIOSYNC_PLAY) /* play */
|
|
|
|
*(int *)arg = d->callback(d, MIDI_CB_STOP | MIDI_CB_WR);
|
|
|
|
else if (*(int *)arg == AIOSYNC_CAPTURE)
|
|
|
|
*(int *)arg = d->callback(d, MIDI_CB_STOP | MIDI_CB_RD);
|
|
|
|
else {
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_ioctl: bad channel 0x%x.\n", *(int *)arg));
|
2000-07-11 11:49:33 +00:00
|
|
|
*(int *)arg = 0 ;
|
|
|
|
}
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
break ;
|
|
|
|
|
|
|
|
case AIOSYNC:
|
2002-01-04 01:13:49 +00:00
|
|
|
sp = (snd_sync_parm *)arg;
|
|
|
|
MIDI_DEBUG(printf("midi_ioctl: unimplemented, chan 0x%03lx pos %lu.\n",
|
|
|
|
sp->chan,
|
|
|
|
sp->pos));
|
2000-07-11 11:49:33 +00:00
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* here follow the standard ioctls (filio.h etc.)
|
|
|
|
*/
|
|
|
|
case FIONREAD: /* get # bytes to read */
|
2002-01-04 01:13:49 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
*(int *)arg = d->midi_dbuf_in.rl;
|
2002-01-04 01:13:49 +00:00
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
|
|
|
MIDI_DEBUG(printf("midi_ioctl: rl %d.\n", *(int *)arg));
|
2000-07-11 11:49:33 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FIOASYNC: /*set/clear async i/o */
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("FIOASYNC\n"));
|
2000-07-11 11:49:33 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FIONBIO: /* set/clear non-blocking i/o */
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
2002-01-04 01:13:49 +00:00
|
|
|
if (*(int *)arg == 0)
|
2000-07-11 11:49:33 +00:00
|
|
|
d->flags &= ~MIDI_F_NBIO ;
|
|
|
|
else
|
|
|
|
d->flags |= MIDI_F_NBIO ;
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_ioctl: arg %d.\n", *(int *)arg));
|
2000-07-11 11:49:33 +00:00
|
|
|
break ;
|
|
|
|
|
|
|
|
case MIOSPASSTHRU: /* set/clear passthru */
|
2001-02-26 07:36:24 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
2002-01-04 01:13:49 +00:00
|
|
|
if (*(int *)arg == 0)
|
2000-07-11 11:49:33 +00:00
|
|
|
d->flags &= ~MIDI_F_PASSTHRU ;
|
|
|
|
else
|
|
|
|
d->flags |= MIDI_F_PASSTHRU ;
|
|
|
|
|
|
|
|
/* Init the queue. */
|
2001-02-26 07:36:24 +00:00
|
|
|
midibuf_clear(&d->midi_dbuf_passthru);
|
|
|
|
|
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_ioctl: passthru %d.\n", *(int *)arg));
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case MIOGPASSTHRU: /* get passthru */
|
2002-01-04 01:13:49 +00:00
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
if ((d->flags & MIDI_F_PASSTHRU) != 0)
|
2002-01-04 01:13:49 +00:00
|
|
|
*(int *)arg = 1;
|
2000-07-11 11:49:33 +00:00
|
|
|
else
|
2002-01-04 01:13:49 +00:00
|
|
|
*(int *)arg = 0;
|
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
|
|
|
MIDI_DEBUG(printf("midi_ioctl: passthru %d.\n", *(int *)arg));
|
|
|
|
break;
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
default:
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_ioctl: default ioctl midi%d subdev %d fn 0x%08lx fail\n",
|
|
|
|
unit, dev & 0xf, cmd));
|
2000-07-11 11:49:33 +00:00
|
|
|
ret = EINVAL;
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
return ret ;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
midi_poll(dev_t i_dev, int events, struct thread *td)
|
2000-07-11 11:49:33 +00:00
|
|
|
{
|
2001-02-26 07:36:24 +00:00
|
|
|
int unit, dev, ret, lim;
|
2000-07-11 11:49:33 +00:00
|
|
|
mididev_info *d;
|
|
|
|
|
|
|
|
dev = minor(i_dev);
|
|
|
|
d = get_mididev_info(i_dev, &unit);
|
|
|
|
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_poll: unit %d.\n", unit));
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
if (d == NULL)
|
|
|
|
return (ENXIO);
|
|
|
|
|
|
|
|
ret = 0;
|
2001-02-26 07:36:24 +00:00
|
|
|
|
|
|
|
mtx_lock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
/* Look up the apropriate queue and select it. */
|
|
|
|
if ((events & (POLLOUT | POLLWRNORM)) != 0) {
|
|
|
|
/* Start playing. */
|
|
|
|
d->callback(d, MIDI_CB_START | MIDI_CB_WR);
|
|
|
|
|
|
|
|
/* Find out the boundary. */
|
|
|
|
if ((d->flags & MIDI_F_HAS_SIZE) != 0)
|
|
|
|
lim = d->midi_dbuf_out.blocksize;
|
|
|
|
else
|
|
|
|
lim = d->midi_dbuf_out.unit_size;
|
|
|
|
if (d->midi_dbuf_out.fl < lim)
|
|
|
|
/* No enough space, record select. */
|
2001-09-12 08:38:13 +00:00
|
|
|
selrecord(td, &d->midi_dbuf_out.sel);
|
2000-07-11 11:49:33 +00:00
|
|
|
else
|
|
|
|
/* We can write now. */
|
|
|
|
ret |= events & (POLLOUT | POLLWRNORM);
|
|
|
|
}
|
|
|
|
if ((events & (POLLIN | POLLRDNORM)) != 0) {
|
|
|
|
/* Start recording. */
|
|
|
|
d->callback(d, MIDI_CB_START | MIDI_CB_RD);
|
|
|
|
|
|
|
|
/* Find out the boundary. */
|
|
|
|
if ((d->flags & MIDI_F_HAS_SIZE) != 0)
|
|
|
|
lim = d->midi_dbuf_in.blocksize;
|
|
|
|
else
|
|
|
|
lim = d->midi_dbuf_in.unit_size;
|
|
|
|
if (d->midi_dbuf_in.rl < lim)
|
|
|
|
/* No data ready, record select. */
|
2001-09-12 08:38:13 +00:00
|
|
|
selrecord(td, &d->midi_dbuf_in.sel);
|
2000-07-11 11:49:33 +00:00
|
|
|
else
|
|
|
|
/* We can write now. */
|
|
|
|
ret |= events & (POLLIN | POLLRDNORM);
|
|
|
|
}
|
2001-02-26 07:36:24 +00:00
|
|
|
|
|
|
|
mtx_unlock(&d->flagqueue_mtx);
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
midi_intr(mididev_info *d)
|
|
|
|
{
|
|
|
|
if (d->intr != NULL)
|
|
|
|
d->intr(d->intrarg, d);
|
|
|
|
}
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
/* Flush the output queue. */
|
|
|
|
#define MIDI_SYNC_TIMEOUT 1
|
|
|
|
int
|
|
|
|
midi_sync(mididev_info *d)
|
|
|
|
{
|
|
|
|
int i, rl;
|
|
|
|
|
|
|
|
mtx_assert(&d->flagqueue_mtx, MA_OWNED);
|
|
|
|
|
2002-01-04 01:13:49 +00:00
|
|
|
MIDI_DEBUG(printf("midi_sync: unit %d.\n", d->unit));
|
|
|
|
|
2001-02-26 07:36:24 +00:00
|
|
|
while (d->midi_dbuf_out.rl > 0) {
|
|
|
|
if ((d->flags & MIDI_F_WRITING) == 0)
|
|
|
|
d->callback(d, MIDI_CB_START | MIDI_CB_WR);
|
|
|
|
rl = d->midi_dbuf_out.rl;
|
2002-01-01 17:36:26 +00:00
|
|
|
i = cv_timedwait_sig(&d->midi_dbuf_out.cv_out,
|
|
|
|
&d->flagqueue_mtx,
|
|
|
|
(d->midi_dbuf_out.bufsize * 10 * hz / 38400)
|
|
|
|
+ MIDI_SYNC_TIMEOUT * hz);
|
2001-02-26 07:36:24 +00:00
|
|
|
if (i == EINTR || i == ERESTART) {
|
|
|
|
if (i == EINTR)
|
|
|
|
d->callback(d, MIDI_CB_STOP | MIDI_CB_WR);
|
|
|
|
return (i);
|
|
|
|
}
|
|
|
|
if (i == EWOULDBLOCK && rl == d->midi_dbuf_out.rl) {
|
|
|
|
/* A queue seems to be stuck up. Give up and clear the queue. */
|
|
|
|
d->callback(d, MIDI_CB_STOP | MIDI_CB_WR);
|
|
|
|
midibuf_clear(&d->midi_dbuf_out);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-07-11 11:49:33 +00:00
|
|
|
/*
|
|
|
|
* These handle the status message of the midi drivers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
midistat_open(dev_t i_dev, int flags, int mode, struct thread *td)
|
2000-07-11 11:49:33 +00:00
|
|
|
{
|
|
|
|
if (midistatbusy)
|
|
|
|
return (EBUSY);
|
|
|
|
|
|
|
|
bzero(midistatbuf, sizeof(midistatbuf));
|
|
|
|
midistatptr = 0;
|
|
|
|
if (midi_initstatus(midistatbuf, sizeof(midistatbuf) - 1))
|
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
midistatbusy = 1;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
midistat_close(dev_t i_dev, int flags, int mode, struct thread *td)
|
2000-07-11 11:49:33 +00:00
|
|
|
{
|
|
|
|
midistatbusy = 0;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
midistat_read(dev_t i_dev, struct uio * buf, int flag)
|
|
|
|
{
|
|
|
|
return midi_readstatus(midistatbuf, &midistatptr, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* finally, some "libraries"
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Inits the buffer for /dev/midistat. */
|
|
|
|
static int
|
|
|
|
midi_initstatus(char *buf, int size)
|
|
|
|
{
|
|
|
|
int i, p;
|
|
|
|
device_t dev;
|
|
|
|
mididev_info *md;
|
|
|
|
|
|
|
|
p = 0;
|
|
|
|
p += snprintf(buf, size, "FreeBSD Midi Driver (newmidi) %s %s\nInstalled devices:\n", __DATE__, __TIME__);
|
2001-02-26 07:36:24 +00:00
|
|
|
for (i = 0 ; i < mididev_info_number() ; i++) {
|
|
|
|
md = get_mididev_info_unit(i);
|
2000-07-11 11:49:33 +00:00
|
|
|
if (!MIDICONFED(md))
|
|
|
|
continue;
|
|
|
|
dev = devclass_get_device(midi_devclass, i);
|
|
|
|
if (p < size)
|
|
|
|
p += snprintf(&buf[p], size - p, "midi%d: <%s> %s\n", i, device_get_desc(dev), md->midistat);
|
|
|
|
else
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reads the status message. */
|
|
|
|
static int
|
|
|
|
midi_readstatus(char *buf, int *ptr, struct uio *uio)
|
|
|
|
{
|
2001-02-26 07:36:24 +00:00
|
|
|
int len;
|
2000-07-11 11:49:33 +00:00
|
|
|
|
|
|
|
len = min(uio->uio_resid, strlen(&buf[*ptr]));
|
|
|
|
if (len > 0) {
|
|
|
|
uiomove(&buf[*ptr], len, uio);
|
|
|
|
*ptr += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
2002-01-04 01:13:49 +00:00
|
|
|
|
|
|
|
char
|
|
|
|
*midi_cmdname(int cmd, midi_cmdtab *tab)
|
|
|
|
{
|
|
|
|
while (tab->name != NULL) {
|
|
|
|
if (cmd == tab->cmd)
|
|
|
|
return (tab->name);
|
|
|
|
tab++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ("unknown");
|
|
|
|
}
|