2001-01-13 19:16:12 +03:00
|
|
|
/* $NetBSD: midi.c,v 1.19 2001/01/13 16:16:12 tshiozak Exp $ */
|
1998-08-07 04:00:55 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
1998-11-26 01:17:06 +03:00
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Lennart Augustsson (augustss@netbsd.org).
|
1998-08-07 04:00:55 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "midi.h"
|
|
|
|
#include "sequencer.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/fcntl.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/poll.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/systm.h>
|
2000-03-23 10:01:25 +03:00
|
|
|
#include <sys/callout.h>
|
1998-08-07 04:00:55 +04:00
|
|
|
#include <sys/syslog.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/signalvar.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/audioio.h>
|
|
|
|
#include <sys/midiio.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
|
|
|
|
#include <dev/audio_if.h>
|
1998-08-18 01:16:09 +04:00
|
|
|
#include <dev/midi_if.h>
|
1998-08-07 04:00:55 +04:00
|
|
|
#include <dev/midivar.h>
|
|
|
|
|
1998-12-20 17:26:44 +03:00
|
|
|
#if NMIDI > 0
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
#ifdef AUDIO_DEBUG
|
|
|
|
#define DPRINTF(x) if (mididebug) printf x
|
|
|
|
#define DPRINTFN(n,x) if (mididebug >= (n)) printf x
|
|
|
|
int mididebug = 0;
|
|
|
|
#else
|
|
|
|
#define DPRINTF(x)
|
|
|
|
#define DPRINTFN(n,x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int midi_wait;
|
|
|
|
|
1998-08-12 22:11:53 +04:00
|
|
|
void midi_in __P((void *, int));
|
|
|
|
void midi_out __P((void *));
|
|
|
|
int midi_start_output __P((struct midi_softc *, int));
|
|
|
|
int midi_sleep_timo __P((int *, char *, int));
|
|
|
|
int midi_sleep __P((int *, char *));
|
|
|
|
void midi_wakeup __P((int *));
|
|
|
|
void midi_initbuf __P((struct midi_buffer *));
|
|
|
|
void midi_timeout __P((void *));
|
1998-08-07 04:00:55 +04:00
|
|
|
|
|
|
|
int midiprobe __P((struct device *, struct cfdata *, void *));
|
|
|
|
void midiattach __P((struct device *, struct device *, void *));
|
2001-01-13 19:09:04 +03:00
|
|
|
int mididetach __P((struct device *, int));
|
|
|
|
int midiactivate __P((struct device *, enum devact));
|
1998-08-07 04:00:55 +04:00
|
|
|
|
|
|
|
struct cfattach midi_ca = {
|
2001-01-13 19:09:04 +03:00
|
|
|
sizeof(struct midi_softc), midiprobe, midiattach,
|
|
|
|
mididetach, midiactivate
|
1998-08-07 04:00:55 +04:00
|
|
|
};
|
|
|
|
|
1998-08-18 01:16:09 +04:00
|
|
|
#ifdef MIDI_SAVE
|
|
|
|
#define MIDI_SAVE_SIZE 100000
|
|
|
|
int midicnt;
|
|
|
|
struct {
|
|
|
|
int cnt;
|
|
|
|
u_char buf[MIDI_SAVE_SIZE];
|
|
|
|
} midisave;
|
|
|
|
#define MIDI_GETSAVE _IOWR('m', 100, int)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
extern struct cfdriver midi_cd;
|
|
|
|
|
|
|
|
int
|
|
|
|
midiprobe(parent, match, aux)
|
|
|
|
struct device *parent;
|
|
|
|
struct cfdata *match;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct audio_attach_args *sa = aux;
|
|
|
|
|
|
|
|
DPRINTFN(6,("midiprobe: type=%d sa=%p hw=%p\n",
|
|
|
|
sa->type, sa, sa->hwif));
|
2000-05-06 18:35:28 +04:00
|
|
|
return (sa->type == AUDIODEV_TYPE_MIDI);
|
1998-08-07 04:00:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
midiattach(parent, self, aux)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct midi_softc *sc = (void *)self;
|
|
|
|
struct audio_attach_args *sa = aux;
|
|
|
|
struct midi_hw_if *hwp = sa->hwif;
|
|
|
|
void *hdlp = sa->hdl;
|
|
|
|
|
|
|
|
DPRINTFN(6, ("MIDI attach\n"));
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (hwp == 0 ||
|
|
|
|
hwp->open == 0 ||
|
|
|
|
hwp->close == 0 ||
|
|
|
|
hwp->output == 0 ||
|
|
|
|
hwp->getinfo == 0) {
|
|
|
|
printf("midi: missing method\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2000-03-23 10:01:25 +03:00
|
|
|
|
|
|
|
callout_init(&sc->sc_callout);
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
sc->hw_if = hwp;
|
|
|
|
sc->hw_hdl = hdlp;
|
2001-01-13 19:16:12 +03:00
|
|
|
sc->dying = 0;
|
1998-08-12 22:11:53 +04:00
|
|
|
midi_attach(sc, parent);
|
|
|
|
}
|
|
|
|
|
2001-01-13 19:09:04 +03:00
|
|
|
int
|
|
|
|
midiactivate(self, act)
|
|
|
|
struct device *self;
|
|
|
|
enum devact act;
|
|
|
|
{
|
|
|
|
struct midi_softc *sc = (struct midi_softc *)self;
|
|
|
|
|
|
|
|
switch (act) {
|
|
|
|
case DVACT_ACTIVATE:
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DVACT_DEACTIVATE:
|
|
|
|
sc->dying = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
mididetach(self, flags)
|
|
|
|
struct device *self;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
struct midi_softc *sc = (struct midi_softc *)self;
|
|
|
|
int maj, mn;
|
|
|
|
|
|
|
|
DPRINTF(("midi_detach: sc=%p flags=%d\n", sc, flags));
|
|
|
|
|
|
|
|
sc->dying = 1;
|
|
|
|
|
|
|
|
wakeup(&sc->wchan);
|
|
|
|
wakeup(&sc->rchan);
|
|
|
|
|
|
|
|
/* locate the major number */
|
|
|
|
for (maj = 0; maj < nchrdev; maj++)
|
|
|
|
if (cdevsw[maj].d_open == midiopen)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Nuke the vnodes for any open instances (calls close). */
|
|
|
|
mn = self->dv_unit;
|
|
|
|
vdevgone(maj, mn, mn, VCHR);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1998-08-12 22:11:53 +04:00
|
|
|
void
|
|
|
|
midi_attach(sc, parent)
|
|
|
|
struct midi_softc *sc;
|
|
|
|
struct device *parent;
|
|
|
|
{
|
|
|
|
struct midi_info mi;
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
sc->isopen = 0;
|
|
|
|
|
|
|
|
midi_wait = MIDI_WAIT * hz / 1000000;
|
|
|
|
if (midi_wait == 0)
|
|
|
|
midi_wait = 1;
|
|
|
|
|
1998-08-12 22:11:53 +04:00
|
|
|
sc->sc_dev = parent;
|
|
|
|
sc->hw_if->getinfo(sc->hw_hdl, &mi);
|
1998-08-07 04:00:55 +04:00
|
|
|
sc->props = mi.props;
|
1999-10-19 20:04:52 +04:00
|
|
|
printf(": %s\n", mi.name);
|
1998-08-07 04:00:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
midi_unit_count()
|
|
|
|
{
|
|
|
|
return midi_cd.cd_ndevs;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
midi_initbuf(mb)
|
|
|
|
struct midi_buffer *mb;
|
|
|
|
{
|
|
|
|
mb->used = 0;
|
|
|
|
mb->usedhigh = MIDI_BUFSIZE;
|
|
|
|
mb->end = mb->start + mb->usedhigh;
|
|
|
|
mb->inp = mb->outp = mb->start;
|
|
|
|
}
|
|
|
|
|
1998-08-12 22:11:53 +04:00
|
|
|
int
|
1998-08-07 04:00:55 +04:00
|
|
|
midi_sleep_timo(chan, label, timo)
|
|
|
|
int *chan;
|
|
|
|
char *label;
|
|
|
|
int timo;
|
|
|
|
{
|
|
|
|
int st;
|
|
|
|
|
|
|
|
if (!label)
|
|
|
|
label = "midi";
|
|
|
|
|
|
|
|
DPRINTFN(5, ("midi_sleep_timo: %p %s %d\n", chan, label, timo));
|
|
|
|
*chan = 1;
|
|
|
|
st = tsleep(chan, PWAIT | PCATCH, label, timo);
|
|
|
|
*chan = 0;
|
|
|
|
#ifdef MIDI_DEBUG
|
|
|
|
if (st != 0)
|
|
|
|
printf("midi_sleep: %d\n", st);
|
|
|
|
#endif
|
|
|
|
return st;
|
|
|
|
}
|
|
|
|
|
1998-08-12 22:11:53 +04:00
|
|
|
int
|
1998-08-07 04:00:55 +04:00
|
|
|
midi_sleep(chan, label)
|
|
|
|
int *chan;
|
|
|
|
char *label;
|
|
|
|
{
|
|
|
|
return midi_sleep_timo(chan, label, 0);
|
|
|
|
}
|
|
|
|
|
1998-08-12 22:11:53 +04:00
|
|
|
void
|
1998-08-07 04:00:55 +04:00
|
|
|
midi_wakeup(chan)
|
|
|
|
int *chan;
|
|
|
|
{
|
|
|
|
if (*chan) {
|
|
|
|
DPRINTFN(5, ("midi_wakeup: %p\n", chan));
|
|
|
|
wakeup(chan);
|
|
|
|
*chan = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int midi_lengths[] = { 2,2,2,2,1,1,2,0 };
|
|
|
|
/* Number of bytes in a MIDI command */
|
|
|
|
#define MIDI_LENGTH(d) (midi_lengths[((d) >> 4) & 7])
|
|
|
|
|
|
|
|
void
|
|
|
|
midi_in(addr, data)
|
|
|
|
void *addr;
|
|
|
|
int data;
|
|
|
|
{
|
|
|
|
struct midi_softc *sc = addr;
|
|
|
|
struct midi_buffer *mb = &sc->inbuf;
|
|
|
|
int i;
|
|
|
|
|
1998-08-13 04:13:56 +04:00
|
|
|
if (!sc->isopen)
|
|
|
|
return;
|
1998-08-07 04:00:55 +04:00
|
|
|
if (data == MIDI_ACK)
|
|
|
|
return;
|
2000-01-18 21:49:35 +03:00
|
|
|
|
|
|
|
DPRINTFN(3, ("midi_in: sc=%p data=0x%02x state=%d pos=%d\n",
|
|
|
|
sc, data, sc->in_state, sc->in_pos));
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
if (!(sc->flags & FREAD))
|
|
|
|
return; /* discard data if not reading */
|
|
|
|
|
|
|
|
switch(sc->in_state) {
|
|
|
|
case MIDI_IN_START:
|
|
|
|
if (MIDI_IS_STATUS(data)) {
|
|
|
|
switch(data) {
|
|
|
|
case 0xf0: /* Sysex */
|
|
|
|
sc->in_state = MIDI_IN_SYSEX;
|
|
|
|
break;
|
|
|
|
case 0xf1: /* MTC quarter frame */
|
|
|
|
case 0xf3: /* Song select */
|
|
|
|
sc->in_state = MIDI_IN_DATA;
|
|
|
|
sc->in_msg[0] = data;
|
|
|
|
sc->in_pos = 1;
|
|
|
|
sc->in_left = 1;
|
|
|
|
break;
|
|
|
|
case 0xf2: /* Song position pointer */
|
|
|
|
sc->in_state = MIDI_IN_DATA;
|
|
|
|
sc->in_msg[0] = data;
|
|
|
|
sc->in_pos = 1;
|
|
|
|
sc->in_left = 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (MIDI_IS_COMMON(data)) {
|
|
|
|
sc->in_msg[0] = data;
|
|
|
|
sc->in_pos = 1;
|
|
|
|
goto deliver;
|
|
|
|
} else {
|
|
|
|
sc->in_state = MIDI_IN_DATA;
|
|
|
|
sc->in_msg[0] = sc->in_status = data;
|
|
|
|
sc->in_pos = 1;
|
2000-01-18 21:49:35 +03:00
|
|
|
sc->in_left = MIDI_LENGTH(data);
|
1998-08-07 04:00:55 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (MIDI_IS_STATUS(sc->in_status)) {
|
|
|
|
sc->in_state = MIDI_IN_DATA;
|
|
|
|
sc->in_msg[0] = sc->in_status;
|
|
|
|
sc->in_msg[1] = data;
|
|
|
|
sc->in_pos = 2;
|
|
|
|
sc->in_left = MIDI_LENGTH(sc->in_status) - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
case MIDI_IN_DATA:
|
|
|
|
sc->in_msg[sc->in_pos++] = data;
|
|
|
|
if (--sc->in_left <= 0)
|
|
|
|
break; /* deliver data */
|
|
|
|
return;
|
|
|
|
case MIDI_IN_SYSEX:
|
|
|
|
if (data == MIDI_SYSEX_END)
|
|
|
|
sc->in_state = MIDI_IN_START;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
deliver:
|
|
|
|
sc->in_state = MIDI_IN_START;
|
|
|
|
#if NSEQUENCER > 0
|
|
|
|
if (sc->seqopen) {
|
1998-10-05 13:21:41 +04:00
|
|
|
extern void midiseq_in __P((struct midi_dev *,u_char *,int));
|
|
|
|
midiseq_in(sc->seq_md, sc->in_msg, sc->in_pos);
|
1998-08-07 04:00:55 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (mb->used + sc->in_pos > mb->usedhigh) {
|
|
|
|
DPRINTF(("midi_in: buffer full, discard data=0x%02x\n",
|
|
|
|
sc->in_msg[0]));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (i = 0; i < sc->in_pos; i++) {
|
|
|
|
*mb->inp++ = sc->in_msg[i];
|
|
|
|
if (mb->inp >= mb->end)
|
|
|
|
mb->inp = mb->start;
|
|
|
|
mb->used++;
|
|
|
|
}
|
|
|
|
midi_wakeup(&sc->rchan);
|
|
|
|
selwakeup(&sc->rsel);
|
|
|
|
if (sc->async)
|
|
|
|
psignal(sc->async, SIGIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
midi_out(addr)
|
|
|
|
void *addr;
|
|
|
|
{
|
|
|
|
struct midi_softc *sc = addr;
|
1998-08-13 04:13:56 +04:00
|
|
|
|
|
|
|
if (!sc->isopen)
|
|
|
|
return;
|
1998-08-07 04:00:55 +04:00
|
|
|
DPRINTFN(3, ("midi_out: %p\n", sc));
|
|
|
|
midi_start_output(sc, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
midiopen(dev, flags, ifmt, p)
|
|
|
|
dev_t dev;
|
|
|
|
int flags, ifmt;
|
|
|
|
struct proc *p;
|
|
|
|
{
|
|
|
|
struct midi_softc *sc;
|
|
|
|
struct midi_hw_if *hw;
|
|
|
|
int error;
|
|
|
|
|
2000-07-06 04:43:04 +04:00
|
|
|
sc = device_lookup(&midi_cd, MIDIUNIT(dev));
|
|
|
|
if (sc == NULL)
|
|
|
|
return (ENXIO);
|
2001-01-13 19:09:04 +03:00
|
|
|
if (sc->dying)
|
|
|
|
return (EIO);
|
2000-07-06 04:43:04 +04:00
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
DPRINTF(("midiopen %p\n", sc));
|
|
|
|
|
|
|
|
hw = sc->hw_if;
|
|
|
|
if (!hw)
|
|
|
|
return ENXIO;
|
|
|
|
if (sc->isopen)
|
|
|
|
return EBUSY;
|
|
|
|
sc->in_state = MIDI_IN_START;
|
|
|
|
sc->in_status = 0;
|
|
|
|
error = hw->open(sc->hw_hdl, flags, midi_in, midi_out, sc);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
sc->isopen++;
|
1998-09-13 10:30:25 +04:00
|
|
|
midi_initbuf(&sc->outbuf);
|
|
|
|
midi_initbuf(&sc->inbuf);
|
1998-08-07 04:00:55 +04:00
|
|
|
sc->flags = flags;
|
|
|
|
sc->rchan = 0;
|
|
|
|
sc->wchan = 0;
|
|
|
|
sc->pbus = 0;
|
|
|
|
sc->async = 0;
|
|
|
|
|
1998-08-18 01:16:09 +04:00
|
|
|
#ifdef MIDI_SAVE
|
|
|
|
if (midicnt != 0) {
|
|
|
|
midisave.cnt = midicnt;
|
|
|
|
midicnt = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
midiclose(dev, flags, ifmt, p)
|
|
|
|
dev_t dev;
|
|
|
|
int flags, ifmt;
|
|
|
|
struct proc *p;
|
|
|
|
{
|
|
|
|
int unit = MIDIUNIT(dev);
|
|
|
|
struct midi_softc *sc = midi_cd.cd_devs[unit];
|
|
|
|
struct midi_hw_if *hw = sc->hw_if;
|
|
|
|
int s, error;
|
|
|
|
|
|
|
|
DPRINTF(("midiclose %p\n", sc));
|
|
|
|
|
|
|
|
midi_start_output(sc, 0);
|
|
|
|
error = 0;
|
|
|
|
s = splaudio();
|
|
|
|
while (sc->outbuf.used > 0 && !error) {
|
|
|
|
DPRINTFN(2,("midiclose sleep used=%d\n", sc->outbuf.used));
|
1998-08-13 04:13:56 +04:00
|
|
|
error = midi_sleep_timo(&sc->wchan, "mid_dr", 30*hz);
|
1998-08-07 04:00:55 +04:00
|
|
|
}
|
|
|
|
splx(s);
|
1998-09-13 10:30:25 +04:00
|
|
|
sc->isopen = 0;
|
1998-08-07 04:00:55 +04:00
|
|
|
hw->close(sc->hw_hdl);
|
|
|
|
#if NSEQUENCER > 0
|
|
|
|
sc->seqopen = 0;
|
1998-10-05 13:21:41 +04:00
|
|
|
sc->seq_md = 0;
|
1998-08-07 04:00:55 +04:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
midiread(dev, uio, ioflag)
|
|
|
|
dev_t dev;
|
|
|
|
struct uio *uio;
|
|
|
|
int ioflag;
|
|
|
|
{
|
|
|
|
int unit = MIDIUNIT(dev);
|
|
|
|
struct midi_softc *sc = midi_cd.cd_devs[unit];
|
|
|
|
struct midi_buffer *mb = &sc->inbuf;
|
|
|
|
int error;
|
|
|
|
u_char *outp;
|
|
|
|
int used, cc, n, resid;
|
|
|
|
int s;
|
|
|
|
|
1999-02-26 04:18:09 +03:00
|
|
|
DPRINTF(("midiread: %p, count=%lu\n", sc,
|
|
|
|
(unsigned long)uio->uio_resid));
|
1998-08-07 04:00:55 +04:00
|
|
|
|
2001-01-13 19:09:04 +03:00
|
|
|
if (sc->dying)
|
|
|
|
return EIO;
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
error = 0;
|
|
|
|
resid = uio->uio_resid;
|
|
|
|
while (uio->uio_resid == resid && !error) {
|
|
|
|
s = splaudio();
|
|
|
|
while (mb->used <= 0) {
|
|
|
|
if (ioflag & IO_NDELAY) {
|
|
|
|
splx(s);
|
|
|
|
return EWOULDBLOCK;
|
|
|
|
}
|
|
|
|
error = midi_sleep(&sc->rchan, "mid rd");
|
|
|
|
if (error) {
|
|
|
|
splx(s);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
used = mb->used;
|
|
|
|
outp = mb->outp;
|
|
|
|
splx(s);
|
2001-01-13 19:09:04 +03:00
|
|
|
if (sc->dying)
|
|
|
|
return EIO;
|
1998-08-07 04:00:55 +04:00
|
|
|
cc = used; /* maximum to read */
|
|
|
|
n = mb->end - outp;
|
|
|
|
if (n < cc)
|
|
|
|
cc = n; /* don't read beyond end of buffer */
|
|
|
|
if (uio->uio_resid < cc)
|
|
|
|
cc = uio->uio_resid; /* and no more than we want */
|
|
|
|
DPRINTFN(3, ("midiread: uiomove cc=%d\n", cc));
|
|
|
|
error = uiomove(outp, cc, uio);
|
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
used -= cc;
|
|
|
|
outp += cc;
|
|
|
|
if (outp >= mb->end)
|
|
|
|
outp = mb->start;
|
|
|
|
s = splaudio();
|
|
|
|
mb->outp = outp;
|
|
|
|
mb->used = used;
|
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
midi_timeout(arg)
|
|
|
|
void *arg;
|
|
|
|
{
|
|
|
|
struct midi_softc *sc = arg;
|
|
|
|
|
|
|
|
DPRINTFN(3,("midi_timeout: %p\n", sc));
|
|
|
|
midi_start_output(sc, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
midi_start_output(sc, intr)
|
|
|
|
struct midi_softc *sc;
|
|
|
|
int intr;
|
|
|
|
{
|
|
|
|
struct midi_buffer *mb = &sc->outbuf;
|
|
|
|
u_char *outp;
|
|
|
|
int error;
|
|
|
|
int s;
|
|
|
|
int i, mmax;
|
|
|
|
|
|
|
|
error = 0;
|
|
|
|
mmax = sc->props & MIDI_PROP_OUT_INTR ? 1 : MIDI_MAX_WRITE;
|
2001-01-13 19:09:04 +03:00
|
|
|
|
|
|
|
if (sc->dying)
|
|
|
|
return EIO;
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
s = splaudio();
|
|
|
|
if (sc->pbus && !intr) {
|
|
|
|
DPRINTFN(4, ("midi_start_output: busy\n"));
|
|
|
|
splx(s);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
sc->pbus = 1;
|
|
|
|
for (i = 0; i < mmax && mb->used > 0 && !error; i++) {
|
|
|
|
outp = mb->outp;
|
|
|
|
splx(s);
|
|
|
|
DPRINTFN(4, ("midi_start_output: %p i=%d, data=0x%02x\n",
|
|
|
|
sc, i, *outp));
|
1998-08-18 01:16:09 +04:00
|
|
|
#ifdef MIDI_SAVE
|
|
|
|
midisave.buf[midicnt] = *outp;
|
|
|
|
midicnt = (midicnt + 1) % MIDI_SAVE_SIZE;
|
|
|
|
#endif
|
1998-08-07 04:00:55 +04:00
|
|
|
error = sc->hw_if->output(sc->hw_hdl, *outp++);
|
|
|
|
if (outp >= mb->end)
|
|
|
|
outp = mb->start;
|
|
|
|
s = splaudio();
|
|
|
|
mb->outp = outp;
|
|
|
|
mb->used--;
|
|
|
|
}
|
|
|
|
midi_wakeup(&sc->wchan);
|
|
|
|
selwakeup(&sc->wsel);
|
|
|
|
if (sc->async)
|
|
|
|
psignal(sc->async, SIGIO);
|
|
|
|
if (mb->used > 0) {
|
|
|
|
if (!(sc->props & MIDI_PROP_OUT_INTR))
|
2000-03-23 10:01:25 +03:00
|
|
|
callout_reset(&sc->sc_callout, midi_wait,
|
|
|
|
midi_timeout, sc);
|
1998-08-07 04:00:55 +04:00
|
|
|
} else
|
|
|
|
sc->pbus = 0;
|
|
|
|
splx(s);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
midiwrite(dev, uio, ioflag)
|
|
|
|
dev_t dev;
|
|
|
|
struct uio *uio;
|
|
|
|
int ioflag;
|
|
|
|
{
|
|
|
|
int unit = MIDIUNIT(dev);
|
|
|
|
struct midi_softc *sc = midi_cd.cd_devs[unit];
|
|
|
|
struct midi_buffer *mb = &sc->outbuf;
|
|
|
|
int error;
|
|
|
|
u_char *inp;
|
|
|
|
int used, cc, n;
|
|
|
|
int s;
|
|
|
|
|
1999-02-26 04:18:09 +03:00
|
|
|
DPRINTFN(2, ("midiwrite: %p, unit=%d, count=%lu\n", sc, unit,
|
|
|
|
(unsigned long)uio->uio_resid));
|
1998-08-07 04:00:55 +04:00
|
|
|
|
2001-01-13 19:09:04 +03:00
|
|
|
if (sc->dying)
|
|
|
|
return EIO;
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
error = 0;
|
|
|
|
while (uio->uio_resid > 0 && !error) {
|
|
|
|
s = splaudio();
|
|
|
|
if (mb->used >= mb->usedhigh) {
|
|
|
|
DPRINTFN(3,("midi_write: sleep used=%d hiwat=%d\n",
|
|
|
|
mb->used, mb->usedhigh));
|
|
|
|
if (ioflag & IO_NDELAY) {
|
|
|
|
splx(s);
|
|
|
|
return EWOULDBLOCK;
|
|
|
|
}
|
|
|
|
error = midi_sleep(&sc->wchan, "mid wr");
|
|
|
|
if (error) {
|
|
|
|
splx(s);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
used = mb->used;
|
|
|
|
inp = mb->inp;
|
|
|
|
splx(s);
|
2001-01-13 19:09:04 +03:00
|
|
|
if (sc->dying)
|
|
|
|
return EIO;
|
1998-08-07 04:00:55 +04:00
|
|
|
cc = mb->usedhigh - used; /* maximum to write */
|
|
|
|
n = mb->end - inp;
|
|
|
|
if (n < cc)
|
1998-12-15 21:03:07 +03:00
|
|
|
cc = n; /* don't write beyond end of buffer */
|
1998-08-07 04:00:55 +04:00
|
|
|
if (uio->uio_resid < cc)
|
|
|
|
cc = uio->uio_resid; /* and no more than we have */
|
|
|
|
error = uiomove(inp, cc, uio);
|
|
|
|
#ifdef MIDI_DEBUG
|
|
|
|
if (error)
|
1998-12-15 21:03:07 +03:00
|
|
|
printf("midi_write:(1) uiomove failed %d; "
|
|
|
|
"cc=%d inp=%p\n",
|
1998-08-07 04:00:55 +04:00
|
|
|
error, cc, inp);
|
|
|
|
#endif
|
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
inp = mb->inp + cc;
|
|
|
|
if (inp >= mb->end)
|
|
|
|
inp = mb->start;
|
|
|
|
s = splaudio();
|
|
|
|
mb->inp = inp;
|
|
|
|
mb->used += cc;
|
|
|
|
splx(s);
|
|
|
|
error = midi_start_output(sc, 0);
|
|
|
|
}
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
1998-08-24 21:59:25 +04:00
|
|
|
/*
|
1998-12-15 21:03:07 +03:00
|
|
|
* This write routine is only called from sequencer code and expects
|
1998-08-24 21:59:25 +04:00
|
|
|
* a write that is smaller than the MIDI buffer.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
midi_writebytes(unit, buf, cc)
|
|
|
|
int unit;
|
|
|
|
u_char *buf;
|
|
|
|
int cc;
|
|
|
|
{
|
|
|
|
struct midi_softc *sc = midi_cd.cd_devs[unit];
|
|
|
|
struct midi_buffer *mb = &sc->outbuf;
|
|
|
|
int n, s;
|
|
|
|
|
|
|
|
DPRINTFN(2, ("midi_writebytes: %p, unit=%d, cc=%d\n", sc, unit, cc));
|
1998-12-15 21:03:07 +03:00
|
|
|
DPRINTFN(3, ("midi_writebytes: %x %x %x\n",buf[0],buf[1],buf[2]));
|
1998-08-24 21:59:25 +04:00
|
|
|
|
2001-01-13 19:09:04 +03:00
|
|
|
if (sc->dying)
|
|
|
|
return EIO;
|
|
|
|
|
1998-08-24 21:59:25 +04:00
|
|
|
s = splaudio();
|
|
|
|
if (mb->used + cc >= mb->usedhigh) {
|
|
|
|
splx(s);
|
|
|
|
return (EWOULDBLOCK);
|
|
|
|
}
|
|
|
|
n = mb->end - mb->inp;
|
|
|
|
if (cc < n)
|
|
|
|
n = cc;
|
1998-12-15 21:03:07 +03:00
|
|
|
mb->used += cc;
|
|
|
|
memcpy(mb->inp, buf, n);
|
1998-08-24 21:59:25 +04:00
|
|
|
mb->inp += n;
|
|
|
|
if (mb->inp >= mb->end) {
|
|
|
|
mb->inp = mb->start;
|
|
|
|
cc -= n;
|
|
|
|
if (cc > 0) {
|
|
|
|
memcpy(mb->inp, buf + n, cc);
|
|
|
|
mb->inp += cc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
return (midi_start_output(sc, 0));
|
|
|
|
}
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
int
|
|
|
|
midiioctl(dev, cmd, addr, flag, p)
|
|
|
|
dev_t dev;
|
|
|
|
u_long cmd;
|
|
|
|
caddr_t addr;
|
|
|
|
int flag;
|
|
|
|
struct proc *p;
|
|
|
|
{
|
|
|
|
int unit = MIDIUNIT(dev);
|
|
|
|
struct midi_softc *sc = midi_cd.cd_devs[unit];
|
|
|
|
struct midi_hw_if *hw = sc->hw_if;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
DPRINTF(("midiioctl: %p cmd=0x%08lx\n", sc, cmd));
|
2001-01-13 19:09:04 +03:00
|
|
|
|
|
|
|
if (sc->dying)
|
|
|
|
return EIO;
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
error = 0;
|
|
|
|
switch (cmd) {
|
|
|
|
case FIONBIO:
|
|
|
|
/* All handled in the upper FS layer. */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FIOASYNC:
|
|
|
|
if (*(int *)addr) {
|
|
|
|
if (sc->async)
|
|
|
|
return EBUSY;
|
|
|
|
sc->async = p;
|
|
|
|
DPRINTF(("midi_ioctl: FIOASYNC %p\n", p));
|
|
|
|
} else
|
|
|
|
sc->async = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
case MIDI_PRETIME:
|
|
|
|
/* XXX OSS
|
|
|
|
* This should set up a read timeout, but that's
|
|
|
|
* why we have poll(), so there's nothing yet. */
|
|
|
|
error = EINVAL;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
1998-08-18 01:16:09 +04:00
|
|
|
#ifdef MIDI_SAVE
|
|
|
|
case MIDI_GETSAVE:
|
|
|
|
error = copyout(&midisave, *(void **)addr, sizeof midisave);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
default:
|
|
|
|
if (hw->ioctl)
|
1998-08-12 22:11:53 +04:00
|
|
|
error = hw->ioctl(sc->hw_hdl, cmd, addr, flag, p);
|
1998-08-07 04:00:55 +04:00
|
|
|
else
|
|
|
|
error = EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
midipoll(dev, events, p)
|
|
|
|
dev_t dev;
|
|
|
|
int events;
|
|
|
|
struct proc *p;
|
|
|
|
{
|
|
|
|
int unit = MIDIUNIT(dev);
|
|
|
|
struct midi_softc *sc = midi_cd.cd_devs[unit];
|
|
|
|
int revents = 0;
|
|
|
|
int s = splaudio();
|
|
|
|
|
|
|
|
DPRINTF(("midipoll: %p events=0x%x\n", sc, events));
|
|
|
|
|
2001-01-13 19:09:04 +03:00
|
|
|
if (sc->dying)
|
|
|
|
return EIO;
|
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
if (events & (POLLIN | POLLRDNORM))
|
|
|
|
if (sc->inbuf.used > 0)
|
|
|
|
revents |= events & (POLLIN | POLLRDNORM);
|
|
|
|
|
|
|
|
if (events & (POLLOUT | POLLWRNORM))
|
|
|
|
if (sc->outbuf.used < sc->outbuf.usedhigh)
|
|
|
|
revents |= events & (POLLOUT | POLLWRNORM);
|
|
|
|
|
|
|
|
if (revents == 0) {
|
|
|
|
if (events & (POLLIN | POLLRDNORM))
|
|
|
|
selrecord(p, &sc->rsel);
|
|
|
|
|
|
|
|
if (events & (POLLOUT | POLLWRNORM))
|
|
|
|
selrecord(p, &sc->wsel);
|
|
|
|
}
|
|
|
|
|
|
|
|
splx(s);
|
|
|
|
return revents;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
midi_getinfo(dev, mi)
|
|
|
|
dev_t dev;
|
|
|
|
struct midi_info *mi;
|
|
|
|
{
|
|
|
|
struct midi_softc *sc;
|
|
|
|
|
2000-07-06 04:43:04 +04:00
|
|
|
sc = device_lookup(&midi_cd, MIDIUNIT(dev));
|
|
|
|
if (sc == NULL)
|
1998-08-07 04:00:55 +04:00
|
|
|
return;
|
2001-01-13 19:09:04 +03:00
|
|
|
if (sc->dying)
|
|
|
|
return;
|
2000-07-06 04:43:04 +04:00
|
|
|
|
1998-08-07 04:00:55 +04:00
|
|
|
sc->hw_if->getinfo(sc->hw_hdl, mi);
|
|
|
|
}
|
|
|
|
|
1998-12-20 17:26:44 +03:00
|
|
|
#endif /* NMIDI > 0 */
|
|
|
|
|
|
|
|
#if NMIDI > 0 || NMIDIBUS > 0
|
|
|
|
|
1998-08-18 01:16:09 +04:00
|
|
|
int audioprint __P((void *, const char *));
|
|
|
|
|
1999-09-09 14:24:39 +04:00
|
|
|
struct device *
|
1998-08-18 01:16:09 +04:00
|
|
|
midi_attach_mi(mhwp, hdlp, dev)
|
|
|
|
struct midi_hw_if *mhwp;
|
|
|
|
void *hdlp;
|
|
|
|
struct device *dev;
|
|
|
|
{
|
|
|
|
struct audio_attach_args arg;
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (mhwp == NULL) {
|
|
|
|
printf("midi_attach_mi: NULL\n");
|
1999-09-09 14:24:39 +04:00
|
|
|
return (0);
|
1998-08-18 01:16:09 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
arg.type = AUDIODEV_TYPE_MIDI;
|
|
|
|
arg.hwif = mhwp;
|
|
|
|
arg.hdl = hdlp;
|
1999-09-09 14:24:39 +04:00
|
|
|
return (config_found(dev, &arg, audioprint));
|
1998-08-18 01:16:09 +04:00
|
|
|
}
|
|
|
|
|
1998-12-20 17:26:44 +03:00
|
|
|
#endif /* NMIDI > 0 || NMIDIBUS > 0 */
|