Home | History | Annotate | Line # | Download | only in dev
midi.c revision 1.85.2.1
      1  1.85.2.1  pgoyette /*	$NetBSD: midi.c,v 1.85.2.1 2016/07/26 03:24:20 pgoyette Exp $	*/
      2       1.1  augustss 
      3       1.1  augustss /*
      4      1.73  jmcneill  * Copyright (c) 1998, 2008 The NetBSD Foundation, Inc.
      5       1.1  augustss  * All rights reserved.
      6       1.1  augustss  *
      7       1.8  augustss  * This code is derived from software contributed to The NetBSD Foundation
      8      1.73  jmcneill  * by Lennart Augustsson (augustss (at) NetBSD.org), (MIDI FST and Active
      9      1.73  jmcneill  * Sense handling) Chapman Flack (chap (at) NetBSD.org), and Andrew Doran.
     10       1.1  augustss  *
     11       1.1  augustss  * Redistribution and use in source and binary forms, with or without
     12       1.1  augustss  * modification, are permitted provided that the following conditions
     13       1.1  augustss  * are met:
     14       1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     15       1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     16       1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     18       1.1  augustss  *    documentation and/or other materials provided with the distribution.
     19       1.1  augustss  *
     20       1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21       1.1  augustss  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22       1.1  augustss  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23       1.1  augustss  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24       1.1  augustss  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25       1.1  augustss  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26       1.1  augustss  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27       1.1  augustss  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28       1.1  augustss  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29       1.1  augustss  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30       1.1  augustss  * POSSIBILITY OF SUCH DAMAGE.
     31       1.1  augustss  */
     32      1.23     lukem 
     33      1.23     lukem #include <sys/cdefs.h>
     34  1.85.2.1  pgoyette __KERNEL_RCSID(0, "$NetBSD: midi.c,v 1.85.2.1 2016/07/26 03:24:20 pgoyette Exp $");
     35       1.1  augustss 
     36       1.1  augustss #include "midi.h"
     37       1.1  augustss #include "sequencer.h"
     38       1.1  augustss 
     39       1.1  augustss #include <sys/param.h>
     40       1.1  augustss #include <sys/ioctl.h>
     41       1.1  augustss #include <sys/fcntl.h>
     42       1.1  augustss #include <sys/vnode.h>
     43       1.1  augustss #include <sys/select.h>
     44       1.1  augustss #include <sys/poll.h>
     45       1.1  augustss #include <sys/proc.h>
     46       1.1  augustss #include <sys/systm.h>
     47      1.15   thorpej #include <sys/callout.h>
     48       1.1  augustss #include <sys/syslog.h>
     49       1.1  augustss #include <sys/kernel.h>
     50       1.1  augustss #include <sys/signalvar.h>
     51       1.1  augustss #include <sys/conf.h>
     52       1.1  augustss #include <sys/audioio.h>
     53       1.1  augustss #include <sys/midiio.h>
     54      1.62       tnn #include <sys/device.h>
     55      1.56        ad #include <sys/intr.h>
     56       1.1  augustss 
     57       1.1  augustss #include <dev/audio_if.h>
     58       1.4  augustss #include <dev/midi_if.h>
     59       1.1  augustss #include <dev/midivar.h>
     60       1.1  augustss 
     61      1.10  drochner #if NMIDI > 0
     62      1.10  drochner 
     63       1.1  augustss #ifdef AUDIO_DEBUG
     64       1.1  augustss #define DPRINTF(x)	if (mididebug) printf x
     65       1.1  augustss #define DPRINTFN(n,x)	if (mididebug >= (n)) printf x
     66       1.1  augustss int	mididebug = 0;
     67      1.44      chap /*
     68      1.44      chap  *      1: detected protocol errors and buffer overflows
     69      1.44      chap  *      2: probe, attach, detach
     70      1.44      chap  *      3: open, close
     71      1.44      chap  *      4: data received except realtime
     72      1.44      chap  *      5: ioctl
     73      1.44      chap  *      6: read, write, poll
     74      1.44      chap  *      7: data transmitted
     75      1.44      chap  *      8: uiomoves, synchronization
     76      1.44      chap  *      9: realtime data received
     77      1.44      chap  */
     78       1.1  augustss #else
     79       1.1  augustss #define DPRINTF(x)
     80       1.1  augustss #define DPRINTFN(n,x)
     81       1.1  augustss #endif
     82       1.1  augustss 
     83      1.44      chap static	struct midi_softc *hwif_softc = NULL;
     84      1.74       mrg static	kmutex_t hwif_softc_lock;
     85       1.1  augustss 
     86      1.73  jmcneill static void	midi_in(void *, int);
     87      1.73  jmcneill static void	midi_out(void *);
     88      1.73  jmcneill static int	midi_poll_out(struct midi_softc *);
     89      1.73  jmcneill static int	midi_intr_out(struct midi_softc *);
     90      1.73  jmcneill static int 	midi_msg_out(struct midi_softc *, u_char **, u_char **,
     91      1.73  jmcneill 			     u_char **, u_char **);
     92      1.73  jmcneill static int	midi_start_output(struct midi_softc *);
     93      1.73  jmcneill static void	midi_initbuf(struct midi_buffer *);
     94      1.73  jmcneill static void	midi_xmt_asense(void *);
     95      1.73  jmcneill static void	midi_rcv_asense(void *);
     96      1.73  jmcneill static void	midi_softint(void *);
     97      1.73  jmcneill 
     98      1.73  jmcneill static int	midiprobe(device_t, cfdata_t, void *);
     99      1.73  jmcneill static void	midiattach(device_t, device_t, void *);
    100      1.73  jmcneill int		mididetach(device_t, int);
    101      1.73  jmcneill static int	midiactivate(device_t, enum devact);
    102      1.73  jmcneill 
    103      1.73  jmcneill static dev_type_open(midiopen);
    104      1.73  jmcneill static dev_type_close(midiclose);
    105      1.73  jmcneill static dev_type_read(midiread);
    106      1.73  jmcneill static dev_type_write(midiwrite);
    107      1.73  jmcneill static dev_type_ioctl(midiioctl);
    108      1.73  jmcneill static dev_type_poll(midipoll);
    109      1.73  jmcneill static dev_type_kqfilter(midikqfilter);
    110      1.25   gehenna 
    111      1.25   gehenna const struct cdevsw midi_cdevsw = {
    112      1.80  dholland 	.d_open = midiopen,
    113      1.80  dholland 	.d_close = midiclose,
    114      1.80  dholland 	.d_read = midiread,
    115      1.80  dholland 	.d_write = midiwrite,
    116      1.80  dholland 	.d_ioctl = midiioctl,
    117      1.80  dholland 	.d_stop = nostop,
    118      1.80  dholland 	.d_tty = notty,
    119      1.80  dholland 	.d_poll = midipoll,
    120      1.80  dholland 	.d_mmap = nommap,
    121      1.80  dholland 	.d_kqfilter = midikqfilter,
    122      1.81  dholland 	.d_discard = nodiscard,
    123      1.80  dholland 	.d_flag = D_OTHER | D_MPSAFE
    124      1.25   gehenna };
    125      1.25   gehenna 
    126      1.61      cube CFATTACH_DECL_NEW(midi, sizeof(struct midi_softc),
    127      1.29   thorpej     midiprobe, midiattach, mididetach, midiactivate);
    128       1.1  augustss 
    129      1.44      chap #define MIDI_XMT_ASENSE_PERIOD mstohz(275)
    130      1.44      chap #define MIDI_RCV_ASENSE_PERIOD mstohz(300)
    131       1.4  augustss 
    132       1.1  augustss extern struct cfdriver midi_cd;
    133       1.1  augustss 
    134      1.73  jmcneill static int
    135      1.61      cube midiprobe(device_t parent, cfdata_t match, void *aux)
    136       1.1  augustss {
    137      1.73  jmcneill 	struct audio_attach_args *sa;
    138      1.73  jmcneill 
    139      1.73  jmcneill 	sa = aux;
    140      1.73  jmcneill 
    141      1.73  jmcneill 	DPRINTFN(2,("midiprobe: type=%d sa=%p hw=%p\n", sa->type, sa,
    142      1.73  jmcneill 	    sa->hwif));
    143       1.1  augustss 
    144      1.73  jmcneill 	return sa->type == AUDIODEV_TYPE_MIDI;
    145       1.1  augustss }
    146       1.1  augustss 
    147      1.73  jmcneill static void
    148      1.61      cube midiattach(device_t parent, device_t self, void *aux)
    149       1.1  augustss {
    150      1.78    plunky 	struct midi_softc *sc = device_private(self);
    151      1.78    plunky 	struct audio_attach_args *sa = aux;
    152      1.73  jmcneill 	const struct midi_hw_if *hwp;
    153      1.73  jmcneill 	void *hdlp;
    154      1.73  jmcneill 
    155      1.73  jmcneill 	hwp = sa->hwif;
    156      1.73  jmcneill 	hdlp = sa->hdl;
    157       1.1  augustss 
    158      1.57  jmcneill 	aprint_naive("\n");
    159      1.57  jmcneill 
    160      1.44      chap 	DPRINTFN(2, ("MIDI attach\n"));
    161       1.1  augustss 
    162       1.1  augustss #ifdef DIAGNOSTIC
    163       1.1  augustss 	if (hwp == 0 ||
    164       1.1  augustss 	    hwp->open == 0 ||
    165       1.1  augustss 	    hwp->close == 0 ||
    166       1.1  augustss 	    hwp->output == 0 ||
    167       1.1  augustss 	    hwp->getinfo == 0) {
    168      1.85   msaitoh 		aprint_error_dev(self, "missing method\n");
    169       1.1  augustss 		return;
    170       1.1  augustss 	}
    171       1.1  augustss #endif
    172      1.15   thorpej 
    173      1.63      cube 	sc->dev = self;
    174       1.1  augustss 	sc->hw_if = hwp;
    175       1.1  augustss 	sc->hw_hdl = hdlp;
    176      1.78    plunky 	midi_attach(sc);
    177       1.2  augustss }
    178       1.2  augustss 
    179      1.73  jmcneill static int
    180      1.61      cube midiactivate(device_t self, enum devact act)
    181      1.18  tshiozak {
    182      1.61      cube 	struct midi_softc *sc = device_private(self);
    183      1.18  tshiozak 
    184      1.18  tshiozak 	switch (act) {
    185      1.18  tshiozak 	case DVACT_DEACTIVATE:
    186      1.73  jmcneill 		mutex_enter(sc->lock);
    187      1.18  tshiozak 		sc->dying = 1;
    188      1.73  jmcneill 		mutex_exit(sc->lock);
    189      1.71    dyoung 		return 0;
    190      1.71    dyoung 	default:
    191      1.71    dyoung 		return EOPNOTSUPP;
    192      1.18  tshiozak 	}
    193      1.18  tshiozak }
    194      1.18  tshiozak 
    195      1.18  tshiozak int
    196      1.61      cube mididetach(device_t self, int flags)
    197      1.18  tshiozak {
    198      1.61      cube 	struct midi_softc *sc = device_private(self);
    199      1.18  tshiozak 	int maj, mn;
    200      1.18  tshiozak 
    201      1.69    dyoung 	DPRINTFN(2,("%s: sc=%p flags=%d\n", __func__, sc, flags));
    202      1.18  tshiozak 
    203      1.59  christos 	pmf_device_deregister(self);
    204      1.59  christos 
    205      1.73  jmcneill 	mutex_enter(sc->lock);
    206      1.18  tshiozak 	sc->dying = 1;
    207      1.82       mrg 
    208      1.82       mrg 	if (--sc->refcnt >= 0) {
    209      1.82       mrg 		/* Wake anything? */
    210      1.82       mrg 		(void)cv_timedwait(&sc->detach_cv, sc->lock, hz * 60);
    211      1.82       mrg 	}
    212      1.73  jmcneill 	cv_broadcast(&sc->wchan);
    213      1.73  jmcneill 	cv_broadcast(&sc->rchan);
    214      1.73  jmcneill 	mutex_exit(sc->lock);
    215      1.18  tshiozak 
    216      1.18  tshiozak 	/* locate the major number */
    217      1.25   gehenna 	maj = cdevsw_lookup_major(&midi_cdevsw);
    218      1.18  tshiozak 
    219      1.73  jmcneill 	/*
    220      1.73  jmcneill 	 * Nuke the vnodes for any open instances (calls close).
    221      1.73  jmcneill 	 * Will wait until any activity on the device nodes has ceased.
    222      1.73  jmcneill 	 *
    223      1.73  jmcneill 	 * XXXAD NOT YET.
    224      1.73  jmcneill 	 *
    225      1.73  jmcneill 	 * XXXAD NEED TO PREVENT NEW REFERENCES THROUGH AUDIO_ENTER().
    226      1.73  jmcneill 	 */
    227      1.43   thorpej 	mn = device_unit(self);
    228      1.18  tshiozak 	vdevgone(maj, mn, mn, VCHR);
    229      1.85   msaitoh 
    230      1.73  jmcneill 	if (!(sc->props & MIDI_PROP_NO_OUTPUT)) {
    231      1.44      chap 		evcnt_detach(&sc->xmt.bytesDiscarded);
    232      1.44      chap 		evcnt_detach(&sc->xmt.incompleteMessages);
    233      1.44      chap 	}
    234      1.73  jmcneill 	if (sc->props & MIDI_PROP_CAN_INPUT) {
    235      1.44      chap 		evcnt_detach(&sc->rcv.bytesDiscarded);
    236      1.44      chap 		evcnt_detach(&sc->rcv.incompleteMessages);
    237      1.44      chap 	}
    238      1.18  tshiozak 
    239      1.73  jmcneill 	if (sc->sih != NULL) {
    240      1.73  jmcneill 		softint_disestablish(sc->sih);
    241      1.73  jmcneill 		sc->sih = NULL;
    242      1.51        ad 	}
    243      1.51        ad 
    244      1.82       mrg 	mutex_enter(sc->lock);
    245      1.82       mrg 	callout_halt(&sc->xmt_asense_co, sc->lock);
    246      1.82       mrg 	callout_halt(&sc->rcv_asense_co, sc->lock);
    247      1.82       mrg 	mutex_exit(sc->lock);
    248      1.82       mrg 
    249      1.82       mrg 	callout_destroy(&sc->xmt_asense_co);
    250      1.82       mrg 	callout_destroy(&sc->rcv_asense_co);
    251      1.82       mrg 
    252      1.73  jmcneill 	cv_destroy(&sc->wchan);
    253      1.73  jmcneill 	cv_destroy(&sc->rchan);
    254      1.82       mrg 	cv_destroy(&sc->detach_cv);
    255      1.73  jmcneill 
    256      1.18  tshiozak 	return (0);
    257      1.18  tshiozak }
    258      1.18  tshiozak 
    259       1.2  augustss void
    260      1.78    plunky midi_attach(struct midi_softc *sc)
    261       1.2  augustss {
    262       1.2  augustss 	struct midi_info mi;
    263      1.73  jmcneill 	kmutex_t *dummy;
    264      1.74       mrg 	static int first = 1;
    265      1.74       mrg 
    266      1.74       mrg 	if (first) {
    267      1.74       mrg 		mutex_init(&hwif_softc_lock, MUTEX_DEFAULT, IPL_NONE);
    268      1.74       mrg 		first = 0;
    269      1.74       mrg 	}
    270       1.2  augustss 
    271      1.73  jmcneill 	sc->hw_if->get_locks(sc->hw_hdl, &sc->lock, &dummy);
    272      1.73  jmcneill 
    273      1.73  jmcneill 	callout_init(&sc->xmt_asense_co, CALLOUT_MPSAFE);
    274      1.73  jmcneill 	callout_init(&sc->rcv_asense_co, CALLOUT_MPSAFE);
    275      1.44      chap 	callout_setfunc(&sc->xmt_asense_co, midi_xmt_asense, sc);
    276      1.44      chap 	callout_setfunc(&sc->rcv_asense_co, midi_rcv_asense, sc);
    277      1.73  jmcneill 
    278      1.73  jmcneill 	sc->sih = softint_establish(SOFTINT_CLOCK | SOFTINT_MPSAFE,
    279      1.73  jmcneill 	    midi_softint, sc);
    280      1.73  jmcneill 
    281      1.73  jmcneill 	cv_init(&sc->rchan, "midird");
    282      1.73  jmcneill 	cv_init(&sc->wchan, "midiwr");
    283      1.82       mrg 	cv_init(&sc->detach_cv, "mididet");
    284      1.73  jmcneill 
    285      1.44      chap 	sc->dying = 0;
    286       1.1  augustss 	sc->isopen = 0;
    287      1.82       mrg 	sc->refcnt = 0;
    288      1.51        ad 
    289      1.74       mrg 	mutex_enter(&hwif_softc_lock);
    290      1.73  jmcneill 	mutex_enter(sc->lock);
    291      1.74       mrg 	hwif_softc = sc;
    292      1.73  jmcneill 	sc->hw_if->getinfo(sc->hw_hdl, &mi);
    293      1.74       mrg 	hwif_softc = NULL;
    294      1.73  jmcneill 	mutex_exit(sc->lock);
    295      1.74       mrg 	mutex_exit(&hwif_softc_lock);
    296      1.51        ad 
    297       1.1  augustss 	sc->props = mi.props;
    298      1.73  jmcneill 
    299      1.73  jmcneill 	if (!(sc->props & MIDI_PROP_NO_OUTPUT)) {
    300      1.44      chap 		evcnt_attach_dynamic(&sc->xmt.bytesDiscarded,
    301      1.44      chap 			EVCNT_TYPE_MISC, NULL,
    302      1.61      cube 			device_xname(sc->dev), "xmt bytes discarded");
    303      1.44      chap 		evcnt_attach_dynamic(&sc->xmt.incompleteMessages,
    304      1.44      chap 			EVCNT_TYPE_MISC, NULL,
    305      1.61      cube 			device_xname(sc->dev), "xmt incomplete msgs");
    306      1.44      chap 	}
    307      1.73  jmcneill 	if (sc->props & MIDI_PROP_CAN_INPUT) {
    308      1.44      chap 		evcnt_attach_dynamic(&sc->rcv.bytesDiscarded,
    309      1.44      chap 			EVCNT_TYPE_MISC, NULL,
    310      1.61      cube 			device_xname(sc->dev), "rcv bytes discarded");
    311      1.44      chap 		evcnt_attach_dynamic(&sc->rcv.incompleteMessages,
    312      1.44      chap 			EVCNT_TYPE_MISC, NULL,
    313      1.61      cube 			device_xname(sc->dev), "rcv incomplete msgs");
    314      1.44      chap 	}
    315      1.85   msaitoh 
    316      1.75     njoly 	aprint_naive("\n");
    317      1.70  jmcneill 	aprint_normal(": %s\n", mi.name);
    318      1.76    plunky 
    319      1.76    plunky 	if (!pmf_device_register(sc->dev, NULL, NULL))
    320      1.84   msaitoh 		aprint_error_dev(sc->dev, "couldn't establish power handler\n");
    321      1.44      chap }
    322      1.44      chap 
    323      1.73  jmcneill void
    324      1.73  jmcneill midi_register_hw_if_ext(struct midi_hw_if_ext *exthw)
    325      1.73  jmcneill {
    326      1.73  jmcneill 	if (hwif_softc != NULL) /* ignore calls resulting from non-init */
    327      1.44      chap 		hwif_softc->hw_if_ext = exthw; /* uses of getinfo */
    328       1.1  augustss }
    329       1.1  augustss 
    330       1.1  augustss int
    331      1.22  augustss midi_unit_count(void)
    332       1.1  augustss {
    333      1.44      chap 	int i;
    334      1.73  jmcneill 	for ( i = 0; i < midi_cd.cd_ndevs; ++i)
    335      1.73  jmcneill 	        if (NULL == device_lookup(&midi_cd, i))
    336      1.44      chap 		        break;
    337      1.44      chap         return i;
    338       1.1  augustss }
    339       1.1  augustss 
    340      1.73  jmcneill static void
    341      1.22  augustss midi_initbuf(struct midi_buffer *mb)
    342       1.1  augustss {
    343      1.44      chap 	mb->idx_producerp = mb->idx_consumerp = mb->idx;
    344      1.44      chap 	mb->buf_producerp = mb->buf_consumerp = mb->buf;
    345       1.1  augustss }
    346      1.73  jmcneill 
    347      1.44      chap #define PACK_MB_IDX(cat,len) (((cat)<<4)|(len))
    348      1.44      chap #define MB_IDX_CAT(idx) ((idx)>>4)
    349      1.44      chap #define MB_IDX_LEN(idx) ((idx)&0xf)
    350       1.1  augustss 
    351      1.44      chap static char const midi_cats[] = "\0\0\0\0\0\0\0\0\2\2\2\2\1\1\2\3";
    352      1.44      chap #define MIDI_CAT(d) (midi_cats[((d)>>4)&15])
    353      1.44      chap #define FST_RETURN(offp,endp,ret) \
    354      1.44      chap 	return (s->pos=s->msg+(offp)), (s->end=s->msg+(endp)), (ret)
    355      1.44      chap 
    356      1.44      chap enum fst_ret { FST_CHN, FST_CHV, FST_COM, FST_SYX, FST_RT, FST_MORE, FST_ERR,
    357      1.44      chap                FST_HUH, FST_SXP };
    358      1.44      chap enum fst_form { FST_CANON, FST_COMPR, FST_VCOMP };
    359      1.44      chap static struct {
    360      1.44      chap 	int off;
    361      1.44      chap 	enum fst_ret tag;
    362      1.44      chap } const midi_forms[] = {
    363      1.44      chap 	[FST_CANON] = { .off=0, .tag=FST_CHN },
    364      1.44      chap 	[FST_COMPR] = { .off=1, .tag=FST_CHN },
    365      1.44      chap 	[FST_VCOMP] = { .off=0, .tag=FST_CHV }
    366      1.44      chap };
    367      1.44      chap #define FST_CRETURN(endp) \
    368      1.44      chap 	FST_RETURN(midi_forms[form].off,endp,midi_forms[form].tag)
    369      1.44      chap 
    370      1.44      chap /*
    371      1.44      chap  * A MIDI finite state transducer suitable for receiving or transmitting. It
    372      1.44      chap  * will accept correct MIDI input that uses, doesn't use, or sometimes uses the
    373      1.44      chap  * 'running status' compression technique, and transduce it to fully expanded
    374      1.44      chap  * (form=FST_CANON) or fully compressed (form=FST_COMPR or FST_VCOMP) form.
    375      1.44      chap  *
    376      1.44      chap  * Returns FST_MORE if a complete message has not been parsed yet (SysEx
    377      1.44      chap  * messages are the exception), FST_ERR or FST_HUH if the input does not
    378      1.44      chap  * conform to the protocol, or FST_CHN (channel messages), FST_COM (System
    379      1.44      chap  * Common messages), FST_RT (System Real-Time messages), or FST_SYX (System
    380      1.44      chap  * Exclusive) to broadly categorize the message parsed. s->pos and s->end
    381      1.44      chap  * locate the parsed message; while (s->pos<s->end) putchar(*(s->pos++));
    382      1.44      chap  * would output it.
    383      1.44      chap  *
    384      1.44      chap  * FST_HUH means the character c wasn't valid in the original state, but the
    385      1.44      chap  * state has now been reset to START and the caller should try again passing
    386      1.44      chap  * the same c. FST_ERR means c isn't valid in the start state; the caller
    387      1.44      chap  * should kiss it goodbye and continue to try successive characters from the
    388      1.44      chap  * input until something other than FST_ERR or FST_HUH is returned, at which
    389      1.44      chap  * point things are resynchronized.
    390      1.44      chap  *
    391      1.44      chap  * A FST_SYX return means that between pos and end are from 1 to 3
    392      1.44      chap  * bytes of a system exclusive message. A SysEx message will be delivered in
    393      1.44      chap  * one or more chunks of that form, where the first begins with 0xf0 and the
    394      1.44      chap  * last (which is the only one that might have length < 3) ends with 0xf7.
    395      1.44      chap  *
    396      1.44      chap  * Messages corrupted by a protocol error are discarded and won't be seen at
    397      1.44      chap  * all; again SysEx is the exception, as one or more chunks of it may already
    398      1.44      chap  * have been parsed.
    399      1.44      chap  *
    400      1.44      chap  * For FST_CHN messages, s->msg[0] always contains the status byte even if
    401      1.44      chap  * FST_COMPR form was requested (pos then points to msg[1]). That way, the
    402      1.44      chap  * caller can always identify the exact message if there is a need to do so.
    403      1.44      chap  * For all other message types except FST_SYX, the status byte is at *pos
    404      1.44      chap  * (which may not necessarily be msg[0]!). There is only one SysEx status
    405      1.44      chap  * byte, so the return value FST_SYX is sufficient to identify it.
    406      1.44      chap  *
    407      1.44      chap  * To simplify some use cases, compression can also be requested with
    408      1.44      chap  * form=FST_VCOMP. In this form a compressible channel message is indicated
    409      1.44      chap  * by returning a classification of FST_CHV instead of FST_CHN, and pos points
    410      1.44      chap  * to the status byte rather than being advanced past it. If the caller in this
    411      1.44      chap  * case saves the bytes from pos to end, it will have saved the entire message,
    412      1.44      chap  * and can act on the FST_CHV tag to drop the first byte later. In this form,
    413      1.44      chap  * unlike FST_CANON, hidden note-off (i.e. note-on with velocity 0) may occur.
    414      1.44      chap  *
    415      1.44      chap  * Two obscure points in the MIDI protocol complicate things further, both to
    416      1.44      chap  * do with the EndSysEx code, 0xf7. First, this code is permitted (and
    417      1.44      chap  * meaningless) outside of a System Exclusive message, anywhere a status byte
    418      1.44      chap  * could appear. Second, it is allowed to be absent at the end of a System
    419      1.44      chap  * Exclusive message (!) - any status byte at all (non-realtime) is allowed to
    420      1.44      chap  * terminate the message. Both require accomodation in the interface to
    421      1.44      chap  * midi_fst's caller. A stray 0xf7 should be ignored BUT should count as a
    422      1.44      chap  * message received for purposes of Active Sense timeout; the case is
    423      1.44      chap  * represented by a return of FST_COM with a length of zero (pos == end). A
    424      1.44      chap  * status byte other than 0xf7 during a system exclusive message will cause an
    425      1.44      chap  * FST_SXP (sysex plus) return; the bytes from pos to end are the end of the
    426      1.44      chap  * system exclusive message, and after handling those the caller should call
    427      1.44      chap  * midi_fst again with the same input byte.
    428      1.44      chap  *
    429      1.44      chap  * midi(4) will never produce either such form of rubbish.
    430      1.44      chap  */
    431      1.44      chap static enum fst_ret
    432      1.44      chap midi_fst(struct midi_state *s, u_char c, enum fst_form form)
    433      1.44      chap {
    434      1.44      chap 	int syxpos = 0;
    435      1.44      chap 
    436      1.73  jmcneill 	if (c >= 0xf8) { /* All realtime messages bypass state machine */
    437      1.73  jmcneill 	        if (c == 0xf9 || c == 0xfd) {
    438      1.85   msaitoh 			DPRINTF( ("midi_fst: s=%p c=0x%02x undefined\n",
    439      1.73  jmcneill 			    s, c));
    440      1.44      chap 			s->bytesDiscarded.ev_count++;
    441      1.44      chap 			return FST_ERR;
    442      1.44      chap 		}
    443      1.85   msaitoh 		DPRINTFN(9, ("midi_fst: s=%p System Real-Time data=0x%02x\n",
    444      1.73  jmcneill 		    s, c));
    445      1.44      chap 		s->msg[2] = c;
    446      1.44      chap 		FST_RETURN(2,3,FST_RT);
    447      1.44      chap 	}
    448      1.44      chap 
    449      1.85   msaitoh 	DPRINTFN(4, ("midi_fst: s=%p data=0x%02x state=%d\n",
    450      1.73  jmcneill 	    s, c, s->state));
    451      1.44      chap 
    452      1.73  jmcneill         switch (s->state | MIDI_CAT(c)) { /* break ==> return FST_MORE */
    453      1.44      chap 	case MIDI_IN_START  | MIDI_CAT_COMMON:
    454      1.44      chap 	case MIDI_IN_RUN1_1 | MIDI_CAT_COMMON:
    455      1.44      chap 	case MIDI_IN_RUN2_2 | MIDI_CAT_COMMON:
    456      1.44      chap 	case MIDI_IN_RXX2_2 | MIDI_CAT_COMMON:
    457      1.44      chap 	        s->msg[0] = c;
    458      1.73  jmcneill 	        switch ( c) {
    459      1.44      chap 		case 0xf0: s->state = MIDI_IN_SYX1_3; break;
    460      1.44      chap 		case 0xf1: s->state = MIDI_IN_COM0_1; break;
    461      1.44      chap 		case 0xf2: s->state = MIDI_IN_COM0_2; break;
    462      1.44      chap 		case 0xf3: s->state = MIDI_IN_COM0_1; break;
    463      1.44      chap 		case 0xf6: s->state = MIDI_IN_START;  FST_RETURN(0,1,FST_COM);
    464      1.44      chap 		case 0xf7: s->state = MIDI_IN_START;  FST_RETURN(0,0,FST_COM);
    465      1.44      chap 		default: goto protocol_violation;
    466      1.44      chap 		}
    467      1.44      chap 		break;
    468      1.85   msaitoh 
    469      1.44      chap 	case MIDI_IN_RUN1_1 | MIDI_CAT_STATUS1:
    470      1.73  jmcneill 		if (c == s->msg[0]) {
    471      1.44      chap 			s->state = MIDI_IN_RNX0_1;
    472      1.44      chap 			break;
    473      1.44      chap 		}
    474      1.44      chap 		/* FALLTHROUGH */
    475      1.44      chap 	case MIDI_IN_RUN2_2 | MIDI_CAT_STATUS1:
    476      1.44      chap 	case MIDI_IN_RXX2_2 | MIDI_CAT_STATUS1:
    477      1.44      chap 	case MIDI_IN_START  | MIDI_CAT_STATUS1:
    478      1.44      chap 	        s->state = MIDI_IN_RUN0_1;
    479      1.44      chap 	        s->msg[0] = c;
    480      1.44      chap 		break;
    481      1.85   msaitoh 
    482      1.44      chap 	case MIDI_IN_RUN2_2 | MIDI_CAT_STATUS2:
    483      1.44      chap 	case MIDI_IN_RXX2_2 | MIDI_CAT_STATUS2:
    484      1.73  jmcneill 		if (c == s->msg[0]) {
    485      1.44      chap 			s->state = MIDI_IN_RNX0_2;
    486      1.44      chap 			break;
    487      1.44      chap 		}
    488      1.73  jmcneill 		if ((c ^ s->msg[0]) == 0x10 && (c & 0xe0) == 0x80) {
    489      1.44      chap 			s->state = MIDI_IN_RXX0_2;
    490      1.44      chap 			s->msg[0] = c;
    491      1.44      chap 			break;
    492      1.44      chap 		}
    493      1.44      chap 		/* FALLTHROUGH */
    494      1.44      chap 	case MIDI_IN_RUN1_1 | MIDI_CAT_STATUS2:
    495      1.44      chap 	case MIDI_IN_START  | MIDI_CAT_STATUS2:
    496      1.44      chap 	        s->state = MIDI_IN_RUN0_2;
    497      1.44      chap 	        s->msg[0] = c;
    498      1.44      chap 		break;
    499      1.44      chap 
    500      1.44      chap         case MIDI_IN_COM0_1 | MIDI_CAT_DATA:
    501      1.44      chap 		s->state = MIDI_IN_START;
    502      1.44      chap 	        s->msg[1] = c;
    503      1.44      chap 		FST_RETURN(0,2,FST_COM);
    504      1.44      chap 
    505      1.44      chap         case MIDI_IN_COM0_2 | MIDI_CAT_DATA:
    506      1.44      chap 	        s->state = MIDI_IN_COM1_2;
    507      1.44      chap 	        s->msg[1] = c;
    508      1.44      chap 		break;
    509      1.44      chap 
    510      1.44      chap         case MIDI_IN_COM1_2 | MIDI_CAT_DATA:
    511      1.44      chap 		s->state = MIDI_IN_START;
    512      1.44      chap 	        s->msg[2] = c;
    513      1.44      chap 		FST_RETURN(0,3,FST_COM);
    514      1.44      chap 
    515      1.44      chap         case MIDI_IN_RUN0_1 | MIDI_CAT_DATA:
    516      1.44      chap 		s->state = MIDI_IN_RUN1_1;
    517      1.44      chap 	        s->msg[1] = c;
    518      1.44      chap 		FST_RETURN(0,2,FST_CHN);
    519      1.44      chap 
    520      1.44      chap         case MIDI_IN_RUN1_1 | MIDI_CAT_DATA:
    521      1.44      chap         case MIDI_IN_RNX0_1 | MIDI_CAT_DATA:
    522      1.44      chap 		s->state = MIDI_IN_RUN1_1;
    523      1.44      chap 	        s->msg[1] = c;
    524      1.44      chap 		FST_CRETURN(2);
    525      1.44      chap 
    526      1.44      chap         case MIDI_IN_RUN0_2 | MIDI_CAT_DATA:
    527      1.44      chap 	        s->state = MIDI_IN_RUN1_2;
    528      1.44      chap 	        s->msg[1] = c;
    529      1.44      chap 		break;
    530      1.44      chap 
    531      1.44      chap         case MIDI_IN_RUN1_2 | MIDI_CAT_DATA:
    532      1.73  jmcneill 		if (FST_CANON == form && 0 == c && (s->msg[0]&0xf0) == 0x90) {
    533      1.44      chap 			s->state = MIDI_IN_RXX2_2;
    534      1.44      chap 			s->msg[0] ^= 0x10;
    535      1.44      chap 			s->msg[2] = 64;
    536      1.44      chap 		} else {
    537      1.44      chap 			s->state = MIDI_IN_RUN2_2;
    538      1.44      chap 	        	s->msg[2] = c;
    539      1.44      chap 		}
    540      1.44      chap 		FST_RETURN(0,3,FST_CHN);
    541      1.44      chap 
    542      1.44      chap         case MIDI_IN_RUN2_2 | MIDI_CAT_DATA:
    543      1.44      chap 	        s->state = MIDI_IN_RNX1_2;
    544      1.44      chap 	        s->msg[1] = c;
    545      1.44      chap 		break;
    546      1.44      chap 
    547      1.44      chap         case MIDI_IN_RXX2_2 | MIDI_CAT_DATA:
    548      1.44      chap 	        s->state = MIDI_IN_RXX1_2;
    549      1.44      chap 		s->msg[0] ^= 0x10;
    550      1.44      chap 	        s->msg[1] = c;
    551      1.44      chap 		break;
    552      1.44      chap 
    553      1.44      chap         case MIDI_IN_RNX0_2 | MIDI_CAT_DATA:
    554      1.44      chap 	        s->state = MIDI_IN_RNY1_2;
    555      1.44      chap 	        s->msg[1] = c;
    556      1.44      chap 		break;
    557      1.44      chap 
    558      1.44      chap         case MIDI_IN_RXX0_2 | MIDI_CAT_DATA:
    559      1.44      chap 	        s->state = MIDI_IN_RXY1_2;
    560      1.44      chap 	        s->msg[1] = c;
    561      1.44      chap 		break;
    562      1.44      chap 
    563      1.44      chap         case MIDI_IN_RNX1_2 | MIDI_CAT_DATA:
    564      1.44      chap         case MIDI_IN_RNY1_2 | MIDI_CAT_DATA:
    565      1.73  jmcneill 		if (FST_CANON == form && 0 == c && (s->msg[0]&0xf0) == 0x90) {
    566      1.44      chap 			s->state = MIDI_IN_RXX2_2;
    567      1.44      chap 			s->msg[0] ^= 0x10;
    568      1.44      chap 			s->msg[2] = 64;
    569      1.44      chap 			FST_RETURN(0,3,FST_CHN);
    570      1.44      chap 		}
    571      1.44      chap 		s->state = MIDI_IN_RUN2_2;
    572      1.44      chap 	        s->msg[2] = c;
    573      1.44      chap 		FST_CRETURN(3);
    574      1.44      chap 
    575      1.44      chap         case MIDI_IN_RXX1_2 | MIDI_CAT_DATA:
    576      1.44      chap         case MIDI_IN_RXY1_2 | MIDI_CAT_DATA:
    577      1.73  jmcneill 		if (( 0 == c && (s->msg[0]&0xf0) == 0x90)
    578      1.44      chap 		  || (64 == c && (s->msg[0]&0xf0) == 0x80
    579      1.73  jmcneill 		      && FST_CANON != form)) {
    580      1.44      chap 			s->state = MIDI_IN_RXX2_2;
    581      1.44      chap 			s->msg[0] ^= 0x10;
    582      1.44      chap 			s->msg[2] = 64 - c;
    583      1.44      chap 			FST_CRETURN(3);
    584      1.44      chap 		}
    585      1.44      chap 		s->state = MIDI_IN_RUN2_2;
    586      1.44      chap 	        s->msg[2] = c;
    587      1.44      chap 		FST_RETURN(0,3,FST_CHN);
    588      1.44      chap 
    589      1.44      chap         case MIDI_IN_SYX1_3 | MIDI_CAT_DATA:
    590      1.44      chap 		s->state = MIDI_IN_SYX2_3;
    591      1.44      chap 	        s->msg[1] = c;
    592      1.44      chap 		break;
    593      1.44      chap 
    594      1.44      chap         case MIDI_IN_SYX2_3 | MIDI_CAT_DATA:
    595      1.44      chap 		s->state = MIDI_IN_SYX0_3;
    596      1.44      chap 	        s->msg[2] = c;
    597      1.44      chap 		FST_RETURN(0,3,FST_SYX);
    598      1.44      chap 
    599      1.44      chap         case MIDI_IN_SYX0_3 | MIDI_CAT_DATA:
    600      1.44      chap 		s->state = MIDI_IN_SYX1_3;
    601      1.44      chap 	        s->msg[0] = c;
    602      1.44      chap 		break;
    603      1.44      chap 
    604      1.44      chap         case MIDI_IN_SYX2_3 | MIDI_CAT_COMMON:
    605      1.44      chap         case MIDI_IN_SYX2_3 | MIDI_CAT_STATUS1:
    606      1.44      chap         case MIDI_IN_SYX2_3 | MIDI_CAT_STATUS2:
    607      1.44      chap 		++ syxpos;
    608      1.44      chap 		/* FALLTHROUGH */
    609      1.44      chap         case MIDI_IN_SYX1_3 | MIDI_CAT_COMMON:
    610      1.44      chap         case MIDI_IN_SYX1_3 | MIDI_CAT_STATUS1:
    611      1.44      chap         case MIDI_IN_SYX1_3 | MIDI_CAT_STATUS2:
    612      1.44      chap 		++ syxpos;
    613      1.44      chap 		/* FALLTHROUGH */
    614      1.44      chap         case MIDI_IN_SYX0_3 | MIDI_CAT_COMMON:
    615      1.44      chap         case MIDI_IN_SYX0_3 | MIDI_CAT_STATUS1:
    616      1.44      chap         case MIDI_IN_SYX0_3 | MIDI_CAT_STATUS2:
    617      1.44      chap 		s->state = MIDI_IN_START;
    618      1.73  jmcneill 	        if (c == 0xf7) {
    619      1.44      chap 			s->msg[syxpos] = c;
    620      1.44      chap 		        FST_RETURN(0,1+syxpos,FST_SYX);
    621      1.44      chap 		}
    622      1.44      chap 		s->msg[syxpos] = 0xf7;
    623      1.44      chap 		FST_RETURN(0,1+syxpos,FST_SXP);
    624      1.44      chap 
    625      1.44      chap         default:
    626      1.44      chap protocol_violation:
    627      1.44      chap                 DPRINTF(("midi_fst: unexpected %#02x in state %u\n",
    628      1.73  jmcneill 		    c, s->state));
    629      1.73  jmcneill 		switch ( s->state) {
    630      1.44      chap 		case MIDI_IN_RUN1_1: /* can only get here by seeing an */
    631      1.44      chap 		case MIDI_IN_RUN2_2: /* INVALID System Common message */
    632      1.44      chap 		case MIDI_IN_RXX2_2:
    633      1.44      chap 		        s->state = MIDI_IN_START;
    634      1.44      chap 			/* FALLTHROUGH */
    635      1.44      chap 		case MIDI_IN_START:
    636      1.44      chap 			s->bytesDiscarded.ev_count++;
    637      1.44      chap 			return FST_ERR;
    638      1.44      chap 		case MIDI_IN_COM1_2:
    639      1.44      chap 		case MIDI_IN_RUN1_2:
    640      1.44      chap 		case MIDI_IN_RNY1_2:
    641      1.44      chap 		case MIDI_IN_RXY1_2:
    642      1.44      chap 			s->bytesDiscarded.ev_count++;
    643      1.44      chap 			/* FALLTHROUGH */
    644      1.44      chap 		case MIDI_IN_COM0_1:
    645      1.44      chap 		case MIDI_IN_RUN0_1:
    646      1.44      chap 		case MIDI_IN_RNX0_1:
    647      1.44      chap 		case MIDI_IN_COM0_2:
    648      1.44      chap 		case MIDI_IN_RUN0_2:
    649      1.44      chap 		case MIDI_IN_RNX0_2:
    650      1.44      chap 		case MIDI_IN_RXX0_2:
    651      1.44      chap 		case MIDI_IN_RNX1_2:
    652      1.44      chap 		case MIDI_IN_RXX1_2:
    653      1.44      chap 			s->bytesDiscarded.ev_count++;
    654      1.44      chap 		        s->incompleteMessages.ev_count++;
    655      1.44      chap 			break;
    656      1.44      chap 		default:
    657      1.73  jmcneill 		        DPRINTF(("midi_fst: mishandled %#02x(%u) in state %u?!\n",
    658      1.73  jmcneill 			    c, MIDI_CAT(c), s->state));
    659      1.73  jmcneill 			break;
    660      1.44      chap 		}
    661      1.44      chap 		s->state = MIDI_IN_START;
    662      1.44      chap 		return FST_HUH;
    663      1.44      chap 	}
    664      1.44      chap 	return FST_MORE;
    665      1.44      chap }
    666       1.1  augustss 
    667      1.73  jmcneill static void
    668      1.73  jmcneill midi_softint(void *cookie)
    669      1.51        ad {
    670      1.73  jmcneill 	struct midi_softc *sc;
    671      1.73  jmcneill 	proc_t *p;
    672      1.73  jmcneill 	pid_t pid;
    673      1.51        ad 
    674      1.73  jmcneill 	sc = cookie;
    675      1.51        ad 
    676      1.73  jmcneill 	mutex_enter(proc_lock);
    677      1.73  jmcneill 	pid = sc->async;
    678      1.73  jmcneill 	if (pid != 0 && (p = proc_find(pid)) != NULL)
    679      1.73  jmcneill 		psignal(p, SIGIO);
    680      1.73  jmcneill 	mutex_exit(proc_lock);
    681      1.51        ad }
    682      1.51        ad 
    683      1.73  jmcneill static void
    684      1.22  augustss midi_in(void *addr, int data)
    685       1.1  augustss {
    686      1.73  jmcneill 	struct midi_softc *sc;
    687      1.73  jmcneill 	struct midi_buffer *mb;
    688      1.73  jmcneill 	int i, count;
    689      1.44      chap 	enum fst_ret got;
    690      1.44      chap 	MIDI_BUF_DECLARE(idx);
    691      1.44      chap 	MIDI_BUF_DECLARE(buf);
    692       1.1  augustss 
    693      1.73  jmcneill 	sc = addr;
    694      1.73  jmcneill 	mb = &sc->inbuf;
    695      1.73  jmcneill 
    696      1.73  jmcneill 	KASSERT(mutex_owned(sc->lock));
    697      1.73  jmcneill 
    698       1.3  augustss 	if (!sc->isopen)
    699       1.3  augustss 		return;
    700      1.14  augustss 
    701      1.73  jmcneill 	if ((sc->flags & FREAD) == 0)
    702       1.1  augustss 		return;		/* discard data if not reading */
    703      1.85   msaitoh 
    704      1.44      chap sxp_again:
    705      1.73  jmcneill 	do {
    706      1.44      chap 		got = midi_fst(&sc->rcv, data, FST_CANON);
    707      1.73  jmcneill 	} while (got == FST_HUH);
    708      1.85   msaitoh 
    709      1.73  jmcneill 	switch (got) {
    710      1.44      chap 	case FST_MORE:
    711      1.44      chap 	case FST_ERR:
    712       1.1  augustss 		return;
    713      1.44      chap 	case FST_CHN:
    714      1.44      chap 	case FST_COM:
    715      1.44      chap 	case FST_RT:
    716       1.1  augustss #if NSEQUENCER > 0
    717      1.44      chap 		if (sc->seqopen) {
    718      1.44      chap 			extern void midiseq_in(struct midi_dev *,u_char *,int);
    719      1.44      chap 			count = sc->rcv.end - sc->rcv.pos;
    720      1.44      chap 			midiseq_in(sc->seq_md, sc->rcv.pos, count);
    721      1.44      chap 			return;
    722      1.44      chap 		}
    723       1.1  augustss #endif
    724      1.44      chap         	/*
    725      1.44      chap 		 * Pass Active Sense to the sequencer if it's open, but not to
    726      1.44      chap 		 * a raw reader. (Really should do something intelligent with
    727      1.44      chap 		 * it then, though....)
    728      1.44      chap 		 */
    729      1.73  jmcneill 		if (got == FST_RT && MIDI_ACK == sc->rcv.pos[0]) {
    730      1.73  jmcneill 			if (!sc->rcv_expect_asense) {
    731      1.44      chap 				sc->rcv_expect_asense = 1;
    732      1.44      chap 				callout_schedule(&sc->rcv_asense_co,
    733      1.73  jmcneill 				    MIDI_RCV_ASENSE_PERIOD);
    734      1.44      chap 			}
    735      1.44      chap 			sc->rcv_quiescent = 0;
    736      1.44      chap 			sc->rcv_eof = 0;
    737      1.44      chap 			return;
    738      1.44      chap 		}
    739      1.44      chap 		/* FALLTHROUGH */
    740      1.44      chap 	/*
    741      1.44      chap 	 * Ultimately SysEx msgs should be offered to the sequencer also; the
    742      1.44      chap 	 * sequencer API addresses them - but maybe our sequencer can't handle
    743      1.44      chap 	 * them yet, so offer only to raw reader. (Which means, ultimately,
    744      1.44      chap 	 * discard them if the sequencer's open, as it's not doing reads!)
    745      1.44      chap 	 * -> When SysEx support is added to the sequencer, be sure to handle
    746      1.44      chap 	 *    FST_SXP there too.
    747      1.44      chap 	 */
    748      1.44      chap 	case FST_SYX:
    749      1.44      chap 	case FST_SXP:
    750      1.44      chap 		count = sc->rcv.end - sc->rcv.pos;
    751      1.44      chap 		sc->rcv_quiescent = 0;
    752      1.44      chap 		sc->rcv_eof = 0;
    753      1.73  jmcneill 		if (0 == count)
    754      1.44      chap 			break;
    755      1.44      chap 		MIDI_BUF_PRODUCER_INIT(mb,idx);
    756      1.44      chap 		MIDI_BUF_PRODUCER_INIT(mb,buf);
    757      1.44      chap 		if (count > buf_lim - buf_cur
    758      1.44      chap 		     || 1 > idx_lim - idx_cur) {
    759      1.44      chap 			sc->rcv.bytesDiscarded.ev_count += count;
    760      1.85   msaitoh 			DPRINTF(("midi_in: buffer full, discard data=0x%02x\n",
    761      1.44      chap 				 sc->rcv.pos[0]));
    762      1.44      chap 			return;
    763      1.44      chap 		}
    764      1.44      chap 		for (i = 0; i < count; i++) {
    765      1.44      chap 			*buf_cur++ = sc->rcv.pos[i];
    766      1.44      chap 			MIDI_BUF_WRAP(buf);
    767      1.44      chap 		}
    768      1.44      chap 		*idx_cur++ = PACK_MB_IDX(got,count);
    769      1.44      chap 		MIDI_BUF_WRAP(idx);
    770      1.44      chap 		MIDI_BUF_PRODUCER_WBACK(mb,buf);
    771      1.44      chap 		MIDI_BUF_PRODUCER_WBACK(mb,idx);
    772      1.73  jmcneill 		cv_broadcast(&sc->rchan);
    773      1.73  jmcneill 		selnotify(&sc->rsel, 0, NOTE_SUBMIT);
    774      1.73  jmcneill 		if (sc->async != 0)
    775      1.73  jmcneill 			softint_schedule(sc->sih);
    776      1.44      chap 		break;
    777      1.44      chap 	default: /* don't #ifdef this away, gcc will say FST_HUH not handled */
    778      1.44      chap 		printf("midi_in: midi_fst returned %d?!\n", got);
    779       1.1  augustss 	}
    780      1.73  jmcneill 	if (FST_SXP == got)
    781      1.44      chap 		goto sxp_again;
    782       1.1  augustss }
    783       1.1  augustss 
    784      1.73  jmcneill static void
    785      1.22  augustss midi_out(void *addr)
    786       1.1  augustss {
    787       1.1  augustss 	struct midi_softc *sc = addr;
    788       1.3  augustss 
    789      1.73  jmcneill 	KASSERT(mutex_owned(sc->lock));
    790      1.73  jmcneill 
    791       1.3  augustss 	if (!sc->isopen)
    792       1.3  augustss 		return;
    793      1.44      chap 	DPRINTFN(8, ("midi_out: %p\n", sc));
    794      1.44      chap 	midi_intr_out(sc);
    795       1.1  augustss }
    796       1.1  augustss 
    797      1.73  jmcneill static int
    798      1.50  christos midiopen(dev_t dev, int flags, int ifmt, struct lwp *l)
    799       1.1  augustss {
    800  1.85.2.1  pgoyette 	device_t self = device_lookup_acquire(&midi_cd, MIDIUNIT(dev));
    801       1.1  augustss 	struct midi_softc *sc;
    802      1.38      yamt 	const struct midi_hw_if *hw;
    803       1.1  augustss 	int error;
    804       1.1  augustss 
    805  1.85.2.1  pgoyette 	if (self == NULL)
    806      1.17   thorpej 		return (ENXIO);
    807  1.85.2.1  pgoyette 	sc = device_private(self);
    808  1.85.2.1  pgoyette 
    809      1.44      chap 	DPRINTFN(3,("midiopen %p\n", sc));
    810       1.1  augustss 
    811      1.73  jmcneill 	mutex_enter(sc->lock);
    812      1.73  jmcneill 	if (sc->dying) {
    813      1.73  jmcneill 		mutex_exit(sc->lock);
    814  1.85.2.1  pgoyette 		device_release(self);
    815      1.73  jmcneill 		return (EIO);
    816      1.73  jmcneill 	}
    817       1.1  augustss 	hw = sc->hw_if;
    818      1.73  jmcneill 	if (hw == NULL) {
    819      1.73  jmcneill 		mutex_exit(sc->lock);
    820  1.85.2.1  pgoyette 		device_release(self);
    821       1.1  augustss 		return ENXIO;
    822      1.73  jmcneill 	}
    823      1.73  jmcneill 	if (sc->isopen) {
    824      1.73  jmcneill 		mutex_exit(sc->lock);
    825  1.85.2.1  pgoyette 		device_release(self);
    826       1.1  augustss 		return EBUSY;
    827      1.73  jmcneill 	}
    828      1.44      chap 
    829      1.44      chap 	/* put both state machines into known states */
    830      1.44      chap 	sc->rcv.state = MIDI_IN_START;
    831      1.44      chap 	sc->rcv.pos = sc->rcv.msg;
    832      1.44      chap 	sc->rcv.end = sc->rcv.msg;
    833      1.44      chap 	sc->xmt.state = MIDI_IN_START;
    834      1.44      chap 	sc->xmt.pos = sc->xmt.msg;
    835      1.44      chap 	sc->xmt.end = sc->xmt.msg;
    836      1.85   msaitoh 
    837      1.44      chap 	/* copy error counters so an ioctl (TBA) can give since-open stats */
    838      1.44      chap 	sc->rcv.atOpen.bytesDiscarded  = sc->rcv.bytesDiscarded.ev_count;
    839      1.44      chap 	sc->rcv.atQuery.bytesDiscarded = sc->rcv.bytesDiscarded.ev_count;
    840      1.85   msaitoh 
    841      1.44      chap 	sc->xmt.atOpen.bytesDiscarded  = sc->xmt.bytesDiscarded.ev_count;
    842      1.44      chap 	sc->xmt.atQuery.bytesDiscarded = sc->xmt.bytesDiscarded.ev_count;
    843      1.85   msaitoh 
    844      1.44      chap 	/* and the buffers */
    845      1.44      chap 	midi_initbuf(&sc->outbuf);
    846      1.44      chap 	midi_initbuf(&sc->inbuf);
    847      1.85   msaitoh 
    848      1.44      chap 	/* and the receive flags */
    849      1.44      chap 	sc->rcv_expect_asense = 0;
    850      1.44      chap 	sc->rcv_quiescent = 0;
    851      1.44      chap 	sc->rcv_eof = 0;
    852       1.1  augustss 	sc->isopen++;
    853       1.1  augustss 	sc->flags = flags;
    854       1.1  augustss 	sc->pbus = 0;
    855       1.1  augustss 	sc->async = 0;
    856       1.1  augustss 
    857       1.4  augustss #ifdef MIDI_SAVE
    858       1.4  augustss 	if (midicnt != 0) {
    859       1.4  augustss 		midisave.cnt = midicnt;
    860       1.4  augustss 		midicnt = 0;
    861       1.4  augustss 	}
    862       1.4  augustss #endif
    863       1.4  augustss 
    864      1.73  jmcneill 	error = hw->open(sc->hw_hdl, flags, midi_in, midi_out, sc);
    865      1.73  jmcneill 	if (error) {
    866      1.73  jmcneill 		mutex_exit(sc->lock);
    867  1.85.2.1  pgoyette 		device_release(self);
    868      1.73  jmcneill 		return error;
    869      1.73  jmcneill 	}
    870      1.73  jmcneill 
    871      1.73  jmcneill 	mutex_exit(sc->lock);
    872  1.85.2.1  pgoyette 		device_release(self);
    873       1.1  augustss 	return 0;
    874       1.1  augustss }
    875       1.1  augustss 
    876      1.73  jmcneill static int
    877      1.73  jmcneill midiclose(dev_t dev, int flags, int ifmt, struct lwp *l)
    878       1.1  augustss {
    879  1.85.2.1  pgoyette 	device_t self = device_lookup_acquire(&midi_cd, MIDIUNIT(dev));
    880      1.73  jmcneill 	struct midi_softc *sc;
    881      1.73  jmcneill 	const struct midi_hw_if *hw;
    882      1.73  jmcneill 
    883  1.85.2.1  pgoyette 	if (self == NULL)
    884  1.85.2.1  pgoyette 		return ENXIO;
    885  1.85.2.1  pgoyette 
    886  1.85.2.1  pgoyette 	sc = device_private(self);
    887      1.73  jmcneill 	hw = sc->hw_if;
    888       1.1  augustss 
    889      1.44      chap 	DPRINTFN(3,("midiclose %p\n", sc));
    890       1.1  augustss 
    891      1.73  jmcneill 	mutex_enter(sc->lock);
    892      1.44      chap 	/* midi_start_output(sc); anything buffered => pbus already set! */
    893      1.44      chap 	while (sc->pbus) {
    894      1.83       mrg 		if (sc->dying)
    895      1.83       mrg 			break;
    896      1.44      chap 		DPRINTFN(8,("midiclose sleep ...\n"));
    897      1.73  jmcneill 		cv_wait(&sc->wchan, sc->lock);
    898       1.1  augustss 	}
    899       1.3  augustss 	sc->isopen = 0;
    900      1.73  jmcneill 	callout_halt(&sc->xmt_asense_co, sc->lock);
    901      1.73  jmcneill 	callout_halt(&sc->rcv_asense_co, sc->lock);
    902       1.1  augustss 	hw->close(sc->hw_hdl);
    903       1.1  augustss 	sc->seqopen = 0;
    904       1.7  augustss 	sc->seq_md = 0;
    905      1.73  jmcneill 	mutex_exit(sc->lock);
    906      1.73  jmcneill 
    907  1.85.2.1  pgoyette 	device_release(self);
    908       1.1  augustss 	return 0;
    909       1.1  augustss }
    910       1.1  augustss 
    911      1.73  jmcneill static int
    912      1.22  augustss midiread(dev_t dev, struct uio *uio, int ioflag)
    913       1.1  augustss {
    914  1.85.2.1  pgoyette 	device_t self = device_lookup_acquire(&midi_cd, MIDIUNIT(dev));
    915      1.73  jmcneill 	struct midi_softc *sc;
    916      1.73  jmcneill 	struct midi_buffer *mb;
    917      1.73  jmcneill 	int appetite, error, first;
    918      1.44      chap 	MIDI_BUF_DECLARE(idx);
    919      1.44      chap 	MIDI_BUF_DECLARE(buf);
    920      1.73  jmcneill 
    921  1.85.2.1  pgoyette 	if (self == NULL)
    922  1.85.2.1  pgoyette 		return ENXIO;
    923  1.85.2.1  pgoyette 	sc = device_private(self);
    924      1.73  jmcneill 	mb = &sc->inbuf;
    925      1.73  jmcneill 	first = 1;
    926       1.1  augustss 
    927      1.44      chap 	DPRINTFN(6,("midiread: %p, count=%lu\n", sc,
    928      1.73  jmcneill 	    (unsigned long)uio->uio_resid));
    929       1.1  augustss 
    930      1.73  jmcneill 	mutex_enter(sc->lock);
    931      1.73  jmcneill 	if (sc->dying) {
    932      1.73  jmcneill 		mutex_exit(sc->lock);
    933  1.85.2.1  pgoyette 		device_release(self);
    934      1.18  tshiozak 		return EIO;
    935      1.73  jmcneill 	}
    936      1.73  jmcneill 	if ((sc->props & MIDI_PROP_CAN_INPUT) == 0) {
    937      1.73  jmcneill 		mutex_exit(sc->lock);
    938  1.85.2.1  pgoyette 		device_release(self);
    939      1.73  jmcneill 		return ENXIO;
    940      1.73  jmcneill 	}
    941      1.44      chap 	MIDI_BUF_CONSUMER_INIT(mb,idx);
    942      1.44      chap 	MIDI_BUF_CONSUMER_INIT(mb,buf);
    943       1.1  augustss 	error = 0;
    944      1.73  jmcneill 	for (;;) {
    945      1.44      chap 		/*
    946      1.44      chap 		 * If the used portion of idx wraps around the end, just take
    947      1.44      chap 		 * the first part on this iteration, and we'll get the rest on
    948      1.44      chap 		 * the next.
    949      1.44      chap 		 */
    950      1.73  jmcneill 		if (idx_lim > idx_end)
    951      1.44      chap 			idx_lim = idx_end;
    952      1.44      chap 		/*
    953      1.44      chap 		 * Count bytes through the last complete message that will
    954      1.44      chap 		 * fit in the requested read.
    955      1.44      chap 		 */
    956      1.44      chap 		for (appetite = uio->uio_resid; idx_cur < idx_lim; ++idx_cur) {
    957      1.73  jmcneill 			if (appetite < MB_IDX_LEN(*idx_cur))
    958      1.44      chap 				break;
    959      1.44      chap 			appetite -= MB_IDX_LEN(*idx_cur);
    960      1.44      chap 		}
    961      1.44      chap 		appetite = uio->uio_resid - appetite;
    962      1.73  jmcneill 
    963      1.44      chap 		/*
    964      1.44      chap 		 * Only if the read is too small to hold even the first
    965      1.44      chap 		 * complete message will we return a partial one (updating idx
    966      1.44      chap 		 * to reflect the remaining length of the message).
    967      1.44      chap 		 */
    968      1.73  jmcneill 		if (appetite == 0 && idx_cur < idx_lim) {
    969      1.73  jmcneill 			if (!first)
    970      1.73  jmcneill 				break;
    971      1.44      chap 			appetite = uio->uio_resid;
    972      1.44      chap 			*idx_cur = PACK_MB_IDX(MB_IDX_CAT(*idx_cur),
    973      1.73  jmcneill 			    MB_IDX_LEN(*idx_cur) - appetite);
    974      1.44      chap 		}
    975      1.44      chap 		KASSERT(buf_cur + appetite <= buf_lim);
    976      1.85   msaitoh 
    977      1.44      chap 		/* move the bytes */
    978      1.85   msaitoh 		if (appetite > 0) {
    979      1.44      chap 			first = 0;  /* we know we won't return empty-handed */
    980      1.44      chap 			/* do two uiomoves if data wrap around end of buf */
    981      1.73  jmcneill 			if (buf_cur + appetite > buf_end) {
    982      1.44      chap 				DPRINTFN(8,
    983      1.54     pavel 					("midiread: uiomove cc=%td (prewrap)\n",
    984      1.44      chap 					buf_end - buf_cur));
    985      1.73  jmcneill 				mutex_exit(sc->lock);
    986      1.73  jmcneill 				error = uiomove(buf_cur, buf_end - buf_cur, uio);
    987      1.73  jmcneill 				mutex_enter(sc->lock);
    988      1.73  jmcneill 				if (error)
    989      1.73  jmcneill 					break;
    990      1.82       mrg 				if (sc->dying) {
    991      1.82       mrg 					error = EIO;
    992      1.82       mrg 					break;
    993      1.82       mrg 				}
    994      1.44      chap 				appetite -= buf_end - buf_cur;
    995      1.44      chap 				buf_cur = mb->buf;
    996      1.44      chap 			}
    997      1.44      chap 			DPRINTFN(8, ("midiread: uiomove cc=%d\n", appetite));
    998      1.73  jmcneill 			mutex_exit(sc->lock);
    999      1.44      chap 			error = uiomove(buf_cur, appetite, uio);
   1000      1.73  jmcneill 			mutex_enter(sc->lock);
   1001      1.73  jmcneill 			if (error)
   1002      1.73  jmcneill 				break;
   1003      1.82       mrg 			if (sc->dying) {
   1004      1.82       mrg 				error = EIO;
   1005      1.82       mrg 				break;
   1006      1.82       mrg 			}
   1007      1.44      chap 			buf_cur += appetite;
   1008      1.44      chap 		}
   1009      1.85   msaitoh 
   1010      1.44      chap 		MIDI_BUF_WRAP(idx);
   1011      1.44      chap 		MIDI_BUF_WRAP(buf);
   1012      1.44      chap 		MIDI_BUF_CONSUMER_WBACK(mb,idx);
   1013      1.44      chap 		MIDI_BUF_CONSUMER_WBACK(mb,buf);
   1014      1.73  jmcneill 		if (0 == uio->uio_resid) /* if read satisfied, we're done */
   1015      1.44      chap 			break;
   1016      1.44      chap 		MIDI_BUF_CONSUMER_REFRESH(mb,idx);
   1017      1.73  jmcneill 		if (idx_cur == idx_lim) { /* need to wait for data? */
   1018      1.73  jmcneill 			if (!first || sc->rcv_eof) /* never block reader if */
   1019      1.44      chap 				break;            /* any data already in hand */
   1020       1.1  augustss 			if (ioflag & IO_NDELAY) {
   1021      1.44      chap 				error = EWOULDBLOCK;
   1022      1.44      chap 				break;
   1023       1.1  augustss 			}
   1024      1.73  jmcneill 			error = cv_wait_sig(&sc->rchan, sc->lock);
   1025      1.73  jmcneill 			if (error)
   1026      1.44      chap 				break;
   1027      1.44      chap 			MIDI_BUF_CONSUMER_REFRESH(mb,idx); /* what'd we get? */
   1028       1.1  augustss 		}
   1029      1.44      chap 		MIDI_BUF_CONSUMER_REFRESH(mb,buf);
   1030      1.73  jmcneill 		if (sc->dying) {
   1031      1.73  jmcneill 			error = EIO;
   1032      1.73  jmcneill 			break;
   1033      1.73  jmcneill 		}
   1034       1.1  augustss 	}
   1035      1.73  jmcneill 	mutex_exit(sc->lock);
   1036      1.44      chap 
   1037  1.85.2.1  pgoyette 	device_release(self);
   1038       1.1  augustss 	return error;
   1039       1.1  augustss }
   1040       1.1  augustss 
   1041      1.73  jmcneill static void
   1042      1.44      chap midi_rcv_asense(void *arg)
   1043       1.1  augustss {
   1044      1.73  jmcneill 	struct midi_softc *sc;
   1045      1.73  jmcneill 
   1046      1.73  jmcneill 	sc = arg;
   1047      1.73  jmcneill 
   1048      1.73  jmcneill 	mutex_enter(sc->lock);
   1049      1.73  jmcneill 	if (sc->dying || !sc->isopen) {
   1050      1.73  jmcneill 		mutex_exit(sc->lock);
   1051      1.44      chap 		return;
   1052      1.73  jmcneill 	}
   1053      1.73  jmcneill 	if (sc->rcv_quiescent) {
   1054      1.44      chap 		sc->rcv_eof = 1;
   1055      1.44      chap 		sc->rcv_quiescent = 0;
   1056      1.44      chap 		sc->rcv_expect_asense = 0;
   1057      1.73  jmcneill 		cv_broadcast(&sc->rchan);
   1058      1.73  jmcneill 		selnotify(&sc->rsel, 0, NOTE_SUBMIT);
   1059      1.73  jmcneill 		if (sc->async)
   1060      1.73  jmcneill 			softint_schedule(sc->sih);
   1061      1.73  jmcneill 		mutex_exit(sc->lock);
   1062      1.44      chap 		return;
   1063      1.85   msaitoh 	}
   1064      1.44      chap 	sc->rcv_quiescent = 1;
   1065      1.44      chap 	callout_schedule(&sc->rcv_asense_co, MIDI_RCV_ASENSE_PERIOD);
   1066      1.73  jmcneill 	mutex_exit(sc->lock);
   1067       1.1  augustss }
   1068       1.1  augustss 
   1069      1.73  jmcneill static void
   1070      1.44      chap midi_xmt_asense(void *arg)
   1071      1.44      chap {
   1072      1.73  jmcneill 	struct midi_softc *sc;
   1073      1.73  jmcneill 	int error, armed;
   1074      1.73  jmcneill 
   1075      1.73  jmcneill 	sc = arg;
   1076      1.85   msaitoh 
   1077      1.73  jmcneill 	mutex_enter(sc->lock);
   1078      1.73  jmcneill 	if (sc->pbus || sc->dying || !sc->isopen) {
   1079      1.73  jmcneill 		mutex_exit(sc->lock);
   1080      1.44      chap 		return;
   1081      1.44      chap 	}
   1082      1.44      chap 	sc->pbus = 1;
   1083      1.73  jmcneill 	if (sc->props & MIDI_PROP_OUT_INTR) {
   1084      1.44      chap 		error = sc->hw_if->output(sc->hw_hdl, MIDI_ACK);
   1085      1.44      chap 		armed = (error == 0);
   1086      1.73  jmcneill 	} else {
   1087      1.44      chap 		error = sc->hw_if->output(sc->hw_hdl, MIDI_ACK);
   1088      1.44      chap 		armed = 0;
   1089      1.44      chap 	}
   1090      1.73  jmcneill 	if (!armed) {
   1091      1.44      chap 		sc->pbus = 0;
   1092      1.44      chap 		callout_schedule(&sc->xmt_asense_co, MIDI_XMT_ASENSE_PERIOD);
   1093      1.44      chap 	}
   1094      1.73  jmcneill 	mutex_exit(sc->lock);
   1095      1.44      chap }
   1096      1.44      chap 
   1097      1.44      chap /*
   1098      1.44      chap  * The way this function was hacked up to plug into poll_out and intr_out
   1099      1.44      chap  * after they were written won't win it any beauty contests, but it'll work
   1100      1.73  jmcneill  * (code in haste, refactor at leisure).
   1101      1.44      chap  */
   1102      1.73  jmcneill static int
   1103      1.73  jmcneill midi_msg_out(struct midi_softc *sc, u_char **idx, u_char **idxl, u_char **buf,
   1104      1.73  jmcneill 	     u_char **bufl)
   1105      1.73  jmcneill {
   1106      1.44      chap 	MIDI_BUF_DECLARE(idx);
   1107      1.44      chap 	MIDI_BUF_DECLARE(buf);
   1108      1.44      chap 	MIDI_BUF_EXTENT_INIT(&sc->outbuf,idx);
   1109      1.44      chap 	MIDI_BUF_EXTENT_INIT(&sc->outbuf,buf);
   1110      1.44      chap 	int length;
   1111      1.44      chap 	int error;
   1112      1.44      chap 	u_char contig[3];
   1113      1.44      chap 	u_char *cp;
   1114      1.44      chap 	u_char *ep;
   1115      1.73  jmcneill 
   1116      1.73  jmcneill 	KASSERT(mutex_owned(sc->lock));
   1117      1.73  jmcneill 
   1118      1.44      chap 	idx_cur = *idx;
   1119      1.44      chap 	idx_lim = *idxl;
   1120      1.44      chap 	buf_cur = *buf;
   1121      1.44      chap 	buf_lim = *bufl;
   1122      1.85   msaitoh 
   1123      1.44      chap 	length = MB_IDX_LEN(*idx_cur);
   1124      1.85   msaitoh 
   1125      1.73  jmcneill 	for ( cp = contig, ep = cp + length; cp < ep;) {
   1126      1.44      chap 		*cp++ = *buf_cur++;
   1127      1.44      chap 		MIDI_BUF_WRAP(buf);
   1128      1.44      chap 	}
   1129      1.44      chap 	cp = contig;
   1130      1.44      chap 
   1131      1.73  jmcneill 	switch ( MB_IDX_CAT(*idx_cur)) {
   1132      1.44      chap 	case FST_CHV: /* chnmsg to be compressed (for device that wants it) */
   1133      1.44      chap 		++ cp;
   1134      1.44      chap 		-- length;
   1135      1.44      chap 		/* FALLTHROUGH */
   1136      1.44      chap 	case FST_CHN:
   1137      1.44      chap 		error = sc->hw_if_ext->channel(sc->hw_hdl,
   1138      1.73  jmcneill 		    MIDI_GET_STATUS(contig[0]), MIDI_GET_CHAN(contig[0]),
   1139      1.73  jmcneill 		    cp, length);
   1140      1.44      chap 		break;
   1141      1.44      chap 	case FST_COM:
   1142      1.44      chap 		error = sc->hw_if_ext->common(sc->hw_hdl,
   1143      1.73  jmcneill 		    MIDI_GET_STATUS(contig[0]), cp, length);
   1144      1.44      chap 		break;
   1145      1.44      chap 	case FST_SYX:
   1146      1.44      chap 	case FST_SXP:
   1147      1.73  jmcneill 		error = sc->hw_if_ext->sysex(sc->hw_hdl, cp, length);
   1148      1.44      chap 		break;
   1149      1.44      chap 	case FST_RT:
   1150      1.44      chap 		error = sc->hw_if->output(sc->hw_hdl, *cp);
   1151      1.44      chap 		break;
   1152      1.44      chap 	default:
   1153      1.44      chap 		error = EIO;
   1154      1.44      chap 	}
   1155      1.85   msaitoh 
   1156      1.73  jmcneill 	if (!error) {
   1157      1.44      chap 		++ idx_cur;
   1158      1.44      chap 		MIDI_BUF_WRAP(idx);
   1159      1.44      chap 		*idx  = idx_cur;
   1160      1.44      chap 		*idxl = idx_lim;
   1161      1.44      chap 		*buf  = buf_cur;
   1162      1.44      chap 		*bufl = buf_lim;
   1163      1.44      chap 	}
   1164      1.85   msaitoh 
   1165      1.44      chap 	return error;
   1166      1.44      chap }
   1167      1.44      chap 
   1168      1.44      chap /*
   1169      1.44      chap  * midi_poll_out is intended for the midi hw (the vast majority of MIDI UARTs
   1170      1.44      chap  * on sound cards, apparently) that _do not have transmit-ready interrupts_.
   1171      1.44      chap  * Every call to hw_if->output for one of these may busy-wait to output the
   1172      1.44      chap  * byte; at the standard midi data rate that'll be 320us per byte. The
   1173      1.44      chap  * technique of writing only MIDI_MAX_WRITE bytes in a row and then waiting
   1174      1.44      chap  * for MIDI_WAIT does not reduce the total time spent busy-waiting, and it
   1175      1.44      chap  * adds arbitrary delays in transmission (and, since MIDI_WAIT is roughly the
   1176      1.44      chap  * same as the time to send MIDI_MAX_WRITE bytes, it effectively halves the
   1177      1.44      chap  * data rate). Here, a somewhat bolder approach is taken. Since midi traffic
   1178      1.44      chap  * is bursty but time-sensitive--most of the time there will be none at all,
   1179      1.44      chap  * but when there is it should go out ASAP--the strategy is to just get it
   1180      1.44      chap  * over with, and empty the buffer in one go. The effect this can have on
   1181      1.44      chap  * the rest of the system will be limited by the size of the buffer and the
   1182      1.44      chap  * sparseness of the traffic. But some precautions are in order. Interrupts
   1183      1.44      chap  * should all be unmasked when this is called, and midiwrite should not fill
   1184      1.44      chap  * the buffer more than once (when MIDI_PROP_CAN_INTR is false) without a
   1185      1.44      chap  * yield() so some other process can get scheduled. If the write is nonblocking,
   1186      1.44      chap  * midiwrite should return a short count rather than yield.
   1187      1.44      chap  *
   1188      1.44      chap  * Someday when there is fine-grained MP support, this should be reworked to
   1189      1.44      chap  * run in a callout so the writing process really could proceed concurrently.
   1190      1.44      chap  * But obviously where performance is a concern, interrupt-driven hardware
   1191      1.44      chap  * such as USB midi or (apparently) clcs will always be preferable. And it
   1192      1.44      chap  * seems (kern/32651) that many of the devices currently working in poll mode
   1193      1.44      chap  * may really have tx interrupt capability and want only implementation; that
   1194      1.44      chap  * ought to happen.
   1195      1.44      chap  */
   1196      1.73  jmcneill static int
   1197      1.44      chap midi_poll_out(struct midi_softc *sc)
   1198       1.1  augustss {
   1199       1.1  augustss 	struct midi_buffer *mb = &sc->outbuf;
   1200       1.1  augustss 	int error;
   1201      1.44      chap 	int msglen;
   1202      1.44      chap 	MIDI_BUF_DECLARE(idx);
   1203      1.44      chap 	MIDI_BUF_DECLARE(buf);
   1204       1.1  augustss 
   1205      1.73  jmcneill 	KASSERT(mutex_owned(sc->lock));
   1206      1.73  jmcneill 
   1207       1.1  augustss 	error = 0;
   1208      1.44      chap 	MIDI_BUF_CONSUMER_INIT(mb,idx);
   1209      1.44      chap 	MIDI_BUF_CONSUMER_INIT(mb,buf);
   1210      1.44      chap 
   1211      1.73  jmcneill 	for (;;) {
   1212      1.73  jmcneill 		while (idx_cur != idx_lim) {
   1213      1.73  jmcneill 			if (sc->hw_if_ext) {
   1214      1.44      chap 				error = midi_msg_out(sc, &idx_cur, &idx_lim,
   1215      1.73  jmcneill 				    &buf_cur, &buf_lim);
   1216      1.73  jmcneill 				if (error != 0) {
   1217      1.73  jmcneill 					break;
   1218      1.73  jmcneill 				}
   1219      1.44      chap 				continue;
   1220      1.44      chap 			}
   1221      1.44      chap 			/* or, lacking hw_if_ext ... */
   1222      1.44      chap 			msglen = MB_IDX_LEN(*idx_cur);
   1223      1.44      chap 			DPRINTFN(7,("midi_poll_out: %p <- %#02x\n",
   1224      1.73  jmcneill 			    sc->hw_hdl, *buf_cur));
   1225      1.44      chap 			error = sc->hw_if->output(sc->hw_hdl, *buf_cur);
   1226      1.73  jmcneill 			if (error) {
   1227      1.73  jmcneill 				break;
   1228      1.73  jmcneill 			}
   1229      1.73  jmcneill 			buf_cur++;
   1230      1.44      chap 			MIDI_BUF_WRAP(buf);
   1231      1.73  jmcneill 			msglen--;
   1232      1.73  jmcneill 			if (msglen) {
   1233      1.44      chap 				*idx_cur = PACK_MB_IDX(MB_IDX_CAT(*idx_cur),
   1234      1.73  jmcneill 				    msglen);
   1235      1.73  jmcneill 			} else {
   1236      1.73  jmcneill 				idx_cur++;
   1237      1.44      chap 				MIDI_BUF_WRAP(idx);
   1238      1.44      chap 			}
   1239      1.44      chap 		}
   1240      1.73  jmcneill 		if (error != 0) {
   1241      1.73  jmcneill 			break;
   1242      1.73  jmcneill 		}
   1243      1.44      chap 		KASSERT(buf_cur == buf_lim);
   1244      1.44      chap 		MIDI_BUF_CONSUMER_WBACK(mb,idx);
   1245      1.44      chap 		MIDI_BUF_CONSUMER_WBACK(mb,buf);
   1246      1.44      chap 		MIDI_BUF_CONSUMER_REFRESH(mb,idx); /* any more to transmit? */
   1247      1.44      chap 		MIDI_BUF_CONSUMER_REFRESH(mb,buf);
   1248      1.73  jmcneill 		if (idx_lim == idx_cur)
   1249      1.73  jmcneill 			break;
   1250      1.44      chap 	}
   1251      1.18  tshiozak 
   1252      1.73  jmcneill 	if (error != 0) {
   1253      1.73  jmcneill 		DPRINTF(("midi_poll_output error %d\n", error));
   1254      1.73  jmcneill 		MIDI_BUF_CONSUMER_WBACK(mb,idx);
   1255      1.73  jmcneill 		MIDI_BUF_CONSUMER_WBACK(mb,buf);
   1256      1.73  jmcneill 	}
   1257      1.44      chap 	sc->pbus = 0;
   1258      1.44      chap 	callout_schedule(&sc->xmt_asense_co, MIDI_XMT_ASENSE_PERIOD);
   1259      1.44      chap 	return error;
   1260      1.44      chap }
   1261      1.44      chap 
   1262      1.44      chap /*
   1263      1.44      chap  * The interrupt flavor acquires spl and lock once and releases at the end,
   1264      1.44      chap  * as it expects to write only one byte or message. The interface convention
   1265      1.44      chap  * is that if hw_if->output returns 0, it has initiated transmission and the
   1266      1.44      chap  * completion interrupt WILL be forthcoming; if it has not returned 0, NO
   1267      1.44      chap  * interrupt will be forthcoming, and if it returns EINPROGRESS it wants
   1268      1.44      chap  * another byte right away.
   1269      1.44      chap  */
   1270      1.73  jmcneill static int
   1271      1.44      chap midi_intr_out(struct midi_softc *sc)
   1272      1.44      chap {
   1273      1.73  jmcneill 	struct midi_buffer *mb;
   1274      1.73  jmcneill 	int error, msglen;
   1275      1.44      chap 	MIDI_BUF_DECLARE(idx);
   1276      1.44      chap 	MIDI_BUF_DECLARE(buf);
   1277      1.44      chap 	int armed = 0;
   1278      1.44      chap 
   1279      1.73  jmcneill 	KASSERT(mutex_owned(sc->lock));
   1280      1.73  jmcneill 
   1281      1.44      chap 	error = 0;
   1282      1.73  jmcneill 	mb = &sc->outbuf;
   1283      1.44      chap 
   1284      1.44      chap 	MIDI_BUF_CONSUMER_INIT(mb,idx);
   1285      1.44      chap 	MIDI_BUF_CONSUMER_INIT(mb,buf);
   1286      1.85   msaitoh 
   1287      1.73  jmcneill 	while (idx_cur != idx_lim) {
   1288      1.73  jmcneill 		if (sc->hw_if_ext) {
   1289      1.44      chap 			error = midi_msg_out(sc, &idx_cur, &idx_lim,
   1290      1.73  jmcneill 			    &buf_cur, &buf_lim);
   1291      1.73  jmcneill 			if (!error ) /* no EINPROGRESS from extended hw_if */
   1292      1.44      chap 				armed = 1;
   1293      1.20  tshiozak 			break;
   1294      1.44      chap 		}
   1295      1.44      chap 		/* or, lacking hw_if_ext ... */
   1296      1.44      chap 		msglen = MB_IDX_LEN(*idx_cur);
   1297      1.44      chap 		error = sc->hw_if->output(sc->hw_hdl, *buf_cur);
   1298      1.73  jmcneill 		if (error &&  error != EINPROGRESS)
   1299      1.44      chap 			break;
   1300      1.83       mrg 		++buf_cur;
   1301      1.44      chap 		MIDI_BUF_WRAP(buf);
   1302      1.83       mrg 		--msglen;
   1303      1.73  jmcneill 		if (msglen)
   1304      1.44      chap 			*idx_cur = PACK_MB_IDX(MB_IDX_CAT(*idx_cur),msglen);
   1305      1.44      chap 		else {
   1306      1.83       mrg 			++idx_cur;
   1307      1.44      chap 			MIDI_BUF_WRAP(idx);
   1308      1.44      chap 		}
   1309      1.73  jmcneill 		if (!error) {
   1310      1.44      chap 			armed = 1;
   1311      1.44      chap 			break;
   1312      1.44      chap 		}
   1313      1.44      chap 	}
   1314      1.44      chap 	MIDI_BUF_CONSUMER_WBACK(mb,idx);
   1315      1.44      chap 	MIDI_BUF_CONSUMER_WBACK(mb,buf);
   1316      1.73  jmcneill 	if (!armed) {
   1317      1.44      chap 		sc->pbus = 0;
   1318      1.44      chap 		callout_schedule(&sc->xmt_asense_co, MIDI_XMT_ASENSE_PERIOD);
   1319       1.1  augustss 	}
   1320      1.73  jmcneill 	cv_broadcast(&sc->wchan);
   1321      1.73  jmcneill 	selnotify(&sc->wsel, 0, NOTE_SUBMIT);
   1322      1.73  jmcneill 	if (sc->async) {
   1323      1.73  jmcneill 		softint_schedule(sc->sih);
   1324      1.73  jmcneill 	}
   1325      1.73  jmcneill 	if (error) {
   1326      1.73  jmcneill 		DPRINTF(("midi_intr_output error %d\n", error));
   1327      1.73  jmcneill 	}
   1328       1.1  augustss 	return error;
   1329       1.1  augustss }
   1330       1.1  augustss 
   1331      1.73  jmcneill static int
   1332      1.44      chap midi_start_output(struct midi_softc *sc)
   1333      1.44      chap {
   1334      1.73  jmcneill 
   1335      1.73  jmcneill 	KASSERT(mutex_owned(sc->lock));
   1336      1.73  jmcneill 
   1337      1.44      chap 	if (sc->dying)
   1338      1.44      chap 		return EIO;
   1339      1.73  jmcneill 	if (sc->props & MIDI_PROP_OUT_INTR)
   1340      1.44      chap 		return midi_intr_out(sc);
   1341      1.44      chap 	return midi_poll_out(sc);
   1342      1.44      chap }
   1343      1.44      chap 
   1344      1.44      chap static int
   1345      1.44      chap real_writebytes(struct midi_softc *sc, u_char *ibuf, int cc)
   1346      1.44      chap {
   1347      1.73  jmcneill 	u_char *iend;
   1348      1.73  jmcneill 	struct midi_buffer *mb;
   1349      1.73  jmcneill 	int arming, count, got;
   1350      1.44      chap 	enum fst_form form;
   1351      1.44      chap 	MIDI_BUF_DECLARE(idx);
   1352      1.44      chap 	MIDI_BUF_DECLARE(buf);
   1353      1.82       mrg 	int error;
   1354      1.73  jmcneill 
   1355      1.73  jmcneill 	KASSERT(mutex_owned(sc->lock));
   1356      1.73  jmcneill 
   1357      1.82       mrg 	if (sc->dying || !sc->isopen)
   1358      1.82       mrg 		return EIO;
   1359      1.82       mrg 
   1360      1.82       mrg 	sc->refcnt++;
   1361      1.82       mrg 
   1362      1.73  jmcneill 	iend = ibuf + cc;
   1363      1.73  jmcneill 	mb = &sc->outbuf;
   1364      1.73  jmcneill 	arming = 0;
   1365      1.85   msaitoh 
   1366      1.44      chap 	/*
   1367      1.44      chap 	 * If the hardware uses the extended hw_if, pass it canonicalized
   1368      1.44      chap 	 * messages (or compressed ones if it specifically requests, using
   1369      1.44      chap 	 * VCOMP form so the bottom half can still pass the op and chan along);
   1370      1.44      chap 	 * if it does not, send it compressed messages (using COMPR form as
   1371      1.44      chap 	 * there is no need to preserve the status for the bottom half).
   1372      1.44      chap 	 */
   1373      1.73  jmcneill 	if (NULL == sc->hw_if_ext)
   1374      1.44      chap 		form = FST_COMPR;
   1375      1.73  jmcneill 	else if (sc->hw_if_ext->compress)
   1376      1.44      chap 		form = FST_VCOMP;
   1377      1.44      chap 	else
   1378      1.44      chap 		form = FST_CANON;
   1379      1.44      chap 
   1380      1.44      chap 	MIDI_BUF_PRODUCER_INIT(mb,idx);
   1381      1.44      chap 	MIDI_BUF_PRODUCER_INIT(mb,buf);
   1382      1.85   msaitoh 
   1383      1.73  jmcneill 	while (ibuf < iend) {
   1384      1.44      chap 		got = midi_fst(&sc->xmt, *ibuf, form);
   1385      1.83       mrg 		++ibuf;
   1386      1.73  jmcneill 		switch ( got) {
   1387      1.44      chap 		case FST_MORE:
   1388      1.44      chap 			continue;
   1389      1.44      chap 		case FST_ERR:
   1390      1.44      chap 		case FST_HUH:
   1391      1.82       mrg 			error = EPROTO;
   1392      1.82       mrg 			goto out;
   1393      1.44      chap 		case FST_CHN:
   1394      1.44      chap 		case FST_CHV: /* only occurs in VCOMP form */
   1395      1.44      chap 		case FST_COM:
   1396      1.44      chap 		case FST_RT:
   1397      1.44      chap 		case FST_SYX:
   1398      1.44      chap 		case FST_SXP:
   1399      1.44      chap 			break; /* go add to buffer */
   1400      1.44      chap #if defined(AUDIO_DEBUG) || defined(DIAGNOSTIC)
   1401      1.44      chap 		default:
   1402      1.44      chap 			printf("midi_wr: midi_fst returned %d?!\n", got);
   1403      1.44      chap #endif
   1404      1.44      chap 		}
   1405      1.44      chap 		count = sc->xmt.end - sc->xmt.pos;
   1406      1.73  jmcneill 		if (0 == count ) /* can happen with stray 0xf7; see midi_fst */
   1407      1.44      chap 			continue;
   1408      1.44      chap 		/*
   1409      1.44      chap 		 * return EWOULDBLOCK if the data passed will not fit in
   1410      1.44      chap 		 * the buffer; the caller should have taken steps to avoid that.
   1411      1.44      chap 		 * If got==FST_SXP we lose the new status byte, but we're losing
   1412      1.44      chap 		 * anyway, so c'est la vie.
   1413      1.44      chap 		 */
   1414      1.73  jmcneill 		if (idx_cur == idx_lim || count > buf_lim - buf_cur) {
   1415      1.44      chap 			MIDI_BUF_PRODUCER_REFRESH(mb,idx); /* get the most */
   1416      1.44      chap 			MIDI_BUF_PRODUCER_REFRESH(mb,buf); /*  current facts */
   1417      1.82       mrg 			if (idx_cur == idx_lim || count > buf_lim - buf_cur) {
   1418      1.82       mrg 				error = EWOULDBLOCK; /* caller's problem */
   1419      1.82       mrg 				goto out;
   1420      1.82       mrg 			}
   1421      1.44      chap 		}
   1422      1.44      chap 		*idx_cur++ = PACK_MB_IDX(got,count);
   1423      1.44      chap 		MIDI_BUF_WRAP(idx);
   1424      1.73  jmcneill 		while (count) {
   1425      1.44      chap 			*buf_cur++ = *(sc->xmt.pos)++;
   1426      1.44      chap 			MIDI_BUF_WRAP(buf);
   1427      1.44      chap 			-- count;
   1428      1.44      chap 		}
   1429      1.73  jmcneill 		if (FST_SXP == got)
   1430      1.44      chap 			-- ibuf; /* again with same status byte */
   1431      1.44      chap 	}
   1432      1.44      chap 	MIDI_BUF_PRODUCER_WBACK(mb,buf);
   1433      1.44      chap 	MIDI_BUF_PRODUCER_WBACK(mb,idx);
   1434      1.44      chap 	/*
   1435      1.44      chap 	 * If the output transfer is not already busy, and there is a message
   1436      1.44      chap 	 * buffered, mark it busy, stop the Active Sense callout (what if we're
   1437      1.44      chap 	 * too late and it's expired already? No big deal, an extra Active Sense
   1438      1.44      chap 	 * never hurt anybody) and start the output transfer once we're out of
   1439      1.44      chap 	 * the critical section (pbus==1 will stop anyone else doing the same).
   1440      1.44      chap 	 */
   1441      1.44      chap 	MIDI_BUF_CONSUMER_INIT(mb,idx); /* check what consumer's got to read */
   1442      1.73  jmcneill 	if (!sc->pbus && idx_cur < idx_lim) {
   1443      1.44      chap 		sc->pbus = 1;
   1444      1.44      chap 		callout_stop(&sc->xmt_asense_co);
   1445      1.44      chap 		arming = 1;
   1446      1.44      chap 	}
   1447      1.82       mrg 
   1448      1.82       mrg 	error = arming ? midi_start_output(sc) : 0;
   1449      1.82       mrg 
   1450      1.82       mrg out:
   1451      1.82       mrg 	if (--sc->refcnt < 0)
   1452      1.82       mrg 		cv_broadcast(&sc->detach_cv);
   1453      1.82       mrg 
   1454      1.82       mrg 	return error;
   1455      1.44      chap }
   1456      1.44      chap 
   1457      1.73  jmcneill static int
   1458      1.22  augustss midiwrite(dev_t dev, struct uio *uio, int ioflag)
   1459       1.1  augustss {
   1460  1.85.2.1  pgoyette 	device_t self;
   1461      1.73  jmcneill 	struct midi_softc *sc;
   1462      1.73  jmcneill 	struct midi_buffer *mb;
   1463       1.1  augustss 	int error;
   1464      1.44      chap 	u_char inp[256];
   1465      1.44      chap 	MIDI_BUF_DECLARE(idx);
   1466      1.44      chap 	MIDI_BUF_DECLARE(buf);
   1467      1.44      chap 	size_t idxspace;
   1468      1.44      chap 	size_t bufspace;
   1469      1.44      chap 	size_t xfrcount;
   1470      1.44      chap 	int pollout = 0;
   1471       1.1  augustss 
   1472      1.79    martin 	(void)buf_end; (void)idx_end;
   1473  1.85.2.1  pgoyette 	self = device_lookup_acquire(&midi_cd, MIDIUNIT(dev));
   1474  1.85.2.1  pgoyette 	if (self == NULL)
   1475  1.85.2.1  pgoyette 		return ENXIO;
   1476  1.85.2.1  pgoyette 
   1477  1.85.2.1  pgoyette 	sc = device_private(self);
   1478      1.73  jmcneill 
   1479      1.73  jmcneill 	DPRINTFN(6,("midiwrite: %p, unit=%d, count=%lu\n", sc, (int)minor(dev),
   1480      1.73  jmcneill 	    (unsigned long)uio->uio_resid));
   1481       1.1  augustss 
   1482      1.73  jmcneill 	mutex_enter(sc->lock);
   1483      1.73  jmcneill 	if (sc->dying) {
   1484      1.73  jmcneill 		mutex_exit(sc->lock);
   1485  1.85.2.1  pgoyette 		device_release(self);
   1486      1.18  tshiozak 		return EIO;
   1487      1.73  jmcneill 	}
   1488      1.82       mrg 
   1489      1.82       mrg 	sc->refcnt++;
   1490      1.82       mrg 
   1491      1.73  jmcneill 	mb = &sc->outbuf;
   1492       1.1  augustss 	error = 0;
   1493       1.1  augustss 	while (uio->uio_resid > 0 && !error) {
   1494      1.44      chap 		/*
   1495      1.44      chap 		 * block if necessary for the minimum buffer space to guarantee
   1496      1.44      chap 		 * we can write something.
   1497      1.44      chap 		 */
   1498      1.44      chap 		MIDI_BUF_PRODUCER_INIT(mb,idx); /* init can't go above loop; */
   1499      1.44      chap 		MIDI_BUF_PRODUCER_INIT(mb,buf); /* real_writebytes moves cur */
   1500      1.73  jmcneill 		for (;;) {
   1501      1.44      chap 			idxspace = MIDI_BUF_PRODUCER_REFRESH(mb,idx) - idx_cur;
   1502      1.44      chap 			bufspace = MIDI_BUF_PRODUCER_REFRESH(mb,buf) - buf_cur;
   1503      1.73  jmcneill 			if (idxspace >= 1 && bufspace >= 3 && !pollout)
   1504      1.44      chap 				break;
   1505      1.85   msaitoh 			DPRINTFN(8,("midi_write: sleep idx=%zd buf=%zd\n",
   1506      1.44      chap 				 idxspace, bufspace));
   1507       1.1  augustss 			if (ioflag & IO_NDELAY) {
   1508      1.44      chap 				/*
   1509      1.44      chap 				 * If some amount has already been transferred,
   1510      1.44      chap 				 * the common syscall code will automagically
   1511      1.44      chap 				 * convert this to success with a short count.
   1512      1.44      chap 				 */
   1513      1.82       mrg 				error = EWOULDBLOCK;
   1514      1.82       mrg 				goto out;
   1515       1.1  augustss 			}
   1516      1.73  jmcneill 			if (pollout) {
   1517      1.73  jmcneill 				mutex_exit(sc->lock);
   1518      1.73  jmcneill 				yield(); /* see midi_poll_output */
   1519      1.73  jmcneill 				mutex_enter(sc->lock);
   1520      1.44      chap 				pollout = 0;
   1521      1.44      chap 			} else
   1522      1.73  jmcneill 				error = cv_wait_sig(&sc->wchan, sc->lock);
   1523      1.83       mrg 			if (sc->dying)
   1524      1.83       mrg 				error = EIO;
   1525      1.73  jmcneill 			if (error) {
   1526      1.44      chap 				/*
   1527      1.44      chap 				 * Similarly, the common code will handle
   1528      1.44      chap 				 * EINTR and ERESTART properly here, changing to
   1529      1.44      chap 				 * a short count if something transferred.
   1530      1.44      chap 				 */
   1531      1.82       mrg 				goto out;
   1532      1.73  jmcneill 			}
   1533      1.39     perry 		}
   1534      1.44      chap 
   1535      1.44      chap 		/*
   1536      1.44      chap 		 * The number of bytes we can safely extract from the uio
   1537      1.44      chap 		 * depends on the available idx and buf space. Worst case,
   1538      1.44      chap 		 * every byte is a message so 1 idx is required per byte.
   1539      1.44      chap 		 * Worst case, the first byte completes a 3-byte msg in prior
   1540      1.44      chap 		 * state, and every subsequent byte is a Program Change or
   1541      1.44      chap 		 * Channel Pressure msg with running status and expands to 2
   1542      1.44      chap 		 * bytes, so the buf space reqd is 3+2(n-1) or 2n+1. So limit
   1543      1.44      chap 		 * the transfer to the min of idxspace and (bufspace-1)>>1.
   1544      1.44      chap 		 */
   1545      1.44      chap 		xfrcount = (bufspace - 1) >> 1;
   1546      1.73  jmcneill 		if (xfrcount > idxspace)
   1547      1.44      chap 			xfrcount = idxspace;
   1548      1.73  jmcneill 		if (xfrcount > sizeof inp)
   1549      1.44      chap 			xfrcount = sizeof inp;
   1550      1.73  jmcneill 		if (xfrcount > uio->uio_resid)
   1551      1.44      chap 			xfrcount = uio->uio_resid;
   1552      1.44      chap 
   1553      1.73  jmcneill 		mutex_exit(sc->lock);
   1554      1.44      chap 		error = uiomove(inp, xfrcount, uio);
   1555      1.73  jmcneill 		mutex_enter(sc->lock);
   1556       1.1  augustss #ifdef MIDI_DEBUG
   1557       1.1  augustss 		if (error)
   1558       1.9  augustss 		        printf("midi_write:(1) uiomove failed %d; "
   1559      1.72  jakllsch 			       "xfrcount=%zu inp=%p\n",
   1560      1.44      chap 			       error, xfrcount, inp);
   1561       1.1  augustss #endif
   1562      1.83       mrg 		if (error)
   1563      1.44      chap 			break;
   1564      1.85   msaitoh 
   1565      1.44      chap 		/*
   1566      1.44      chap 		 * The number of bytes we extracted being calculated to
   1567      1.44      chap 		 * definitely fit in the buffer even with canonicalization,
   1568      1.44      chap 		 * there is no excuse for real_writebytes to return EWOULDBLOCK.
   1569      1.44      chap 		 */
   1570      1.44      chap 		error = real_writebytes(sc, inp, xfrcount);
   1571      1.44      chap 		KASSERT(error != EWOULDBLOCK);
   1572      1.73  jmcneill 		if (error)
   1573       1.1  augustss 			break;
   1574      1.73  jmcneill 
   1575      1.44      chap 		/*
   1576      1.44      chap 		 * If this is a polling device and we just sent a buffer, let's
   1577      1.44      chap 		 * not send another without giving some other process a chance.
   1578      1.44      chap 		 */
   1579      1.73  jmcneill 		if ((sc->props & MIDI_PROP_OUT_INTR) == 0)
   1580      1.44      chap 			pollout = 1;
   1581      1.54     pavel 		DPRINTFN(8,("midiwrite: uio_resid now %zu, props=%d\n",
   1582      1.73  jmcneill 		    uio->uio_resid, sc->props));
   1583       1.1  augustss 	}
   1584      1.82       mrg 
   1585      1.82       mrg out:
   1586      1.82       mrg 	if (--sc->refcnt < 0)
   1587      1.82       mrg 		cv_broadcast(&sc->detach_cv);
   1588      1.82       mrg 
   1589      1.73  jmcneill 	mutex_exit(sc->lock);
   1590  1.85.2.1  pgoyette 	device_release(self);
   1591      1.44      chap 	return error;
   1592       1.5  augustss }
   1593       1.5  augustss 
   1594       1.5  augustss /*
   1595       1.9  augustss  * This write routine is only called from sequencer code and expects
   1596       1.5  augustss  * a write that is smaller than the MIDI buffer.
   1597       1.5  augustss  */
   1598       1.5  augustss int
   1599      1.40  christos midi_writebytes(int unit, u_char *bf, int cc)
   1600       1.5  augustss {
   1601  1.85.2.1  pgoyette 	device_t self = device_lookup_acquire(&midi_cd, MIDIUNIT(dev));
   1602  1.85.2.1  pgoyette 	struct midi_softc *sc;
   1603  1.85.2.1  pgoyette 	    device_lookup_private_acquire(&midi_cd, unit, &self);
   1604      1.73  jmcneill 	int error;
   1605      1.18  tshiozak 
   1606  1.85.2.1  pgoyette 	if (self == NULL)
   1607  1.85.2.1  pgoyette 		return ENXIO;
   1608  1.85.2.1  pgoyette 	sc = device_private(self);
   1609  1.85.2.1  pgoyette 	if (!sc) {
   1610  1.85.2.1  pgoyette 		device_release(self);
   1611      1.82       mrg 		return EIO;
   1612  1.85.2.1  pgoyette 	}
   1613      1.82       mrg 
   1614      1.44      chap 	DPRINTFN(7, ("midi_writebytes: %p, unit=%d, cc=%d %#02x %#02x %#02x\n",
   1615      1.44      chap                     sc, unit, cc, bf[0], bf[1], bf[2]));
   1616      1.73  jmcneill 
   1617      1.73  jmcneill 	mutex_enter(sc->lock);
   1618      1.83       mrg 	if (sc->dying)
   1619      1.83       mrg 		error = EIO;
   1620      1.83       mrg 	else
   1621      1.83       mrg 		error = real_writebytes(sc, bf, cc);
   1622      1.73  jmcneill 	mutex_exit(sc->lock);
   1623      1.73  jmcneill 
   1624  1.85.2.1  pgoyette 	device_release(self);
   1625      1.73  jmcneill 	return error;
   1626       1.1  augustss }
   1627       1.1  augustss 
   1628      1.73  jmcneill static int
   1629      1.53  christos midiioctl(dev_t dev, u_long cmd, void *addr, int flag, struct lwp *l)
   1630       1.1  augustss {
   1631  1.85.2.1  pgoyette 	device_t self;
   1632      1.73  jmcneill 	struct midi_softc *sc;
   1633      1.73  jmcneill 	const struct midi_hw_if *hw;
   1634       1.1  augustss 	int error;
   1635      1.44      chap 	MIDI_BUF_DECLARE(buf);
   1636       1.1  augustss 
   1637      1.79    martin 	(void)buf_end;
   1638  1.85.2.1  pgoyette 	self = device_lookup_acquire(&midi_cd, MIDIUNIT(dev));
   1639  1.85.2.1  pgoyette 	if (self == NULL)
   1640  1.85.2.1  pgoyette 		return ENXIO;
   1641  1.85.2.1  pgoyette 
   1642  1.85.2.1  pgoyette 	sc = device_private(self);
   1643      1.83       mrg 
   1644      1.83       mrg 	mutex_enter(sc->lock);
   1645      1.83       mrg 	if (sc->dying) {
   1646      1.83       mrg 		mutex_exit(sc->lock);
   1647  1.85.2.1  pgoyette 		device_release(self);
   1648      1.18  tshiozak 		return EIO;
   1649      1.83       mrg 	}
   1650      1.73  jmcneill 	hw = sc->hw_if;
   1651      1.73  jmcneill 	error = 0;
   1652      1.73  jmcneill 
   1653      1.82       mrg 	sc->refcnt++;
   1654      1.82       mrg 
   1655      1.73  jmcneill 	DPRINTFN(5,("midiioctl: %p cmd=0x%08lx\n", sc, cmd));
   1656      1.18  tshiozak 
   1657       1.1  augustss 	switch (cmd) {
   1658       1.1  augustss 	case FIONBIO:
   1659      1.73  jmcneill 		/* All handled in the upper layer. */
   1660       1.1  augustss 		break;
   1661      1.85   msaitoh 
   1662      1.44      chap 	case FIONREAD:
   1663      1.44      chap 		/*
   1664      1.44      chap 		 * This code relies on the current implementation of midi_in
   1665      1.44      chap 		 * always updating buf and idx together in a critical section,
   1666      1.44      chap 		 * so buf always ends at a message boundary. Document this
   1667      1.44      chap 		 * ioctl as always returning a value such that the last message
   1668      1.44      chap 		 * included is complete (SysEx the only exception), and then
   1669      1.44      chap 		 * make sure the implementation doesn't regress.  NB that
   1670      1.44      chap 		 * means if this ioctl returns n and the proc then issues a
   1671      1.44      chap 		 * read of n, n bytes will be read, but if the proc issues a
   1672      1.44      chap 		 * read of m < n, fewer than m bytes may be read to ensure the
   1673      1.44      chap 		 * read ends at a message boundary.
   1674      1.44      chap 		 */
   1675      1.44      chap 		MIDI_BUF_CONSUMER_INIT(&sc->inbuf,buf);
   1676      1.44      chap 		*(int *)addr = buf_lim - buf_cur;
   1677      1.44      chap 		break;
   1678       1.1  augustss 
   1679       1.1  augustss 	case FIOASYNC:
   1680      1.82       mrg 		mutex_exit(sc->lock);
   1681      1.73  jmcneill 		mutex_enter(proc_lock);
   1682       1.1  augustss 		if (*(int *)addr) {
   1683      1.73  jmcneill 			if (sc->async) {
   1684      1.73  jmcneill 				error = EBUSY;
   1685      1.73  jmcneill 			} else {
   1686      1.73  jmcneill 				sc->async = curproc->p_pid;
   1687      1.73  jmcneill 			}
   1688      1.73  jmcneill 			DPRINTFN(5,("midi_ioctl: FIOASYNC %d\n",
   1689      1.73  jmcneill 			    curproc->p_pid));
   1690      1.73  jmcneill 		} else {
   1691       1.1  augustss 			sc->async = 0;
   1692      1.73  jmcneill 		}
   1693      1.73  jmcneill 		mutex_exit(proc_lock);
   1694      1.82       mrg 		mutex_enter(sc->lock);
   1695       1.1  augustss 		break;
   1696       1.1  augustss 
   1697       1.1  augustss #if 0
   1698       1.1  augustss 	case MIDI_PRETIME:
   1699       1.1  augustss 		/* XXX OSS
   1700       1.1  augustss 		 * This should set up a read timeout, but that's
   1701       1.1  augustss 		 * why we have poll(), so there's nothing yet. */
   1702       1.1  augustss 		error = EINVAL;
   1703       1.1  augustss 		break;
   1704       1.1  augustss #endif
   1705       1.1  augustss 
   1706       1.4  augustss #ifdef MIDI_SAVE
   1707       1.4  augustss 	case MIDI_GETSAVE:
   1708      1.82       mrg 		mutex_exit(sc->lock);
   1709       1.4  augustss 		error = copyout(&midisave, *(void **)addr, sizeof midisave);
   1710      1.82       mrg 		mutex_enter(sc->lock);
   1711       1.4  augustss   		break;
   1712       1.4  augustss #endif
   1713       1.4  augustss 
   1714       1.1  augustss 	default:
   1715      1.73  jmcneill 		if (hw->ioctl != NULL) {
   1716      1.42  christos 			error = hw->ioctl(sc->hw_hdl, cmd, addr, flag, l);
   1717      1.73  jmcneill 		} else {
   1718       1.1  augustss 			error = EINVAL;
   1719      1.73  jmcneill 		}
   1720       1.1  augustss 		break;
   1721       1.1  augustss 	}
   1722      1.82       mrg 
   1723      1.82       mrg 	if (--sc->refcnt < 0)
   1724      1.82       mrg 		cv_broadcast(&sc->detach_cv);
   1725      1.82       mrg 	mutex_exit(sc->lock);
   1726  1.85.2.1  pgoyette 	device_release(self);
   1727       1.1  augustss 	return error;
   1728       1.1  augustss }
   1729       1.1  augustss 
   1730      1.73  jmcneill static int
   1731      1.42  christos midipoll(dev_t dev, int events, struct lwp *l)
   1732       1.1  augustss {
   1733  1.85.2.1  pgoyette 	device_t self;
   1734      1.73  jmcneill 	struct midi_softc *sc;
   1735      1.73  jmcneill 	int revents;
   1736      1.44      chap 	MIDI_BUF_DECLARE(idx);
   1737      1.44      chap 	MIDI_BUF_DECLARE(buf);
   1738       1.1  augustss 
   1739      1.79    martin 	(void)buf_end; (void)idx_end;
   1740  1.85.2.1  pgoyette 	self = device_lookup_acquire(&midi_cd, MIDIUNIT(dev));
   1741  1.85.2.1  pgoyette 	if (self == NULL)
   1742  1.85.2.1  pgoyette 		return ENXIO;
   1743  1.85.2.1  pgoyette 
   1744  1.85.2.1  pgoyette 	sc = device_private(self);
   1745      1.73  jmcneill 	revents = 0;
   1746      1.73  jmcneill 
   1747      1.44      chap 	DPRINTFN(6,("midipoll: %p events=0x%x\n", sc, events));
   1748       1.1  augustss 
   1749      1.73  jmcneill 	mutex_enter(sc->lock);
   1750      1.73  jmcneill 	if (sc->dying) {
   1751      1.73  jmcneill 		mutex_exit(sc->lock);
   1752  1.85.2.1  pgoyette 		device_release(self);
   1753      1.41        ws 		return POLLHUP;
   1754      1.73  jmcneill 	}
   1755      1.82       mrg 
   1756      1.82       mrg 	sc->refcnt++;
   1757      1.82       mrg 
   1758      1.73  jmcneill 	if ((events & (POLLIN | POLLRDNORM)) != 0) {
   1759      1.73  jmcneill 		MIDI_BUF_CONSUMER_INIT(&sc->inbuf, idx);
   1760      1.44      chap 		if (idx_cur < idx_lim)
   1761       1.1  augustss 			revents |= events & (POLLIN | POLLRDNORM);
   1762      1.44      chap 		else
   1763      1.44      chap 			selrecord(l, &sc->rsel);
   1764      1.44      chap 	}
   1765      1.73  jmcneill 	if ((events & (POLLOUT | POLLWRNORM)) != 0) {
   1766      1.73  jmcneill 		MIDI_BUF_PRODUCER_INIT(&sc->outbuf, idx);
   1767      1.73  jmcneill 		MIDI_BUF_PRODUCER_INIT(&sc->outbuf, buf);
   1768      1.73  jmcneill 		if (idx_lim - idx_cur >= 1 && buf_lim - buf_cur >= 3)
   1769       1.1  augustss 			revents |= events & (POLLOUT | POLLWRNORM);
   1770      1.44      chap 		else
   1771      1.42  christos 			selrecord(l, &sc->wsel);
   1772       1.1  augustss 	}
   1773      1.82       mrg 
   1774      1.82       mrg 	if (--sc->refcnt < 0)
   1775      1.82       mrg 		cv_broadcast(&sc->detach_cv);
   1776      1.82       mrg 
   1777      1.73  jmcneill 	mutex_exit(sc->lock);
   1778       1.1  augustss 
   1779  1.85.2.1  pgoyette 	device_release(self);
   1780       1.1  augustss 	return revents;
   1781      1.30  jdolecek }
   1782      1.30  jdolecek 
   1783      1.30  jdolecek static void
   1784      1.30  jdolecek filt_midirdetach(struct knote *kn)
   1785      1.30  jdolecek {
   1786      1.30  jdolecek 	struct midi_softc *sc = kn->kn_hook;
   1787      1.30  jdolecek 
   1788      1.73  jmcneill 	mutex_enter(sc->lock);
   1789      1.31  christos 	SLIST_REMOVE(&sc->rsel.sel_klist, kn, knote, kn_selnext);
   1790      1.73  jmcneill 	mutex_exit(sc->lock);
   1791      1.30  jdolecek }
   1792      1.30  jdolecek 
   1793      1.30  jdolecek static int
   1794      1.50  christos filt_midiread(struct knote *kn, long hint)
   1795      1.30  jdolecek {
   1796      1.30  jdolecek 	struct midi_softc *sc = kn->kn_hook;
   1797      1.44      chap 	MIDI_BUF_DECLARE(buf);
   1798      1.30  jdolecek 
   1799      1.79    martin 	(void)buf_end;
   1800      1.73  jmcneill 	if (hint != NOTE_SUBMIT)
   1801      1.73  jmcneill 		mutex_enter(sc->lock);
   1802      1.44      chap 	MIDI_BUF_CONSUMER_INIT(&sc->inbuf,buf);
   1803      1.44      chap 	kn->kn_data = buf_lim - buf_cur;
   1804      1.73  jmcneill 	if (hint != NOTE_SUBMIT)
   1805      1.73  jmcneill 		mutex_exit(sc->lock);
   1806      1.30  jdolecek 	return (kn->kn_data > 0);
   1807      1.30  jdolecek }
   1808      1.30  jdolecek 
   1809      1.30  jdolecek static const struct filterops midiread_filtops =
   1810      1.30  jdolecek 	{ 1, NULL, filt_midirdetach, filt_midiread };
   1811      1.30  jdolecek 
   1812      1.30  jdolecek static void
   1813      1.30  jdolecek filt_midiwdetach(struct knote *kn)
   1814      1.30  jdolecek {
   1815      1.30  jdolecek 	struct midi_softc *sc = kn->kn_hook;
   1816      1.30  jdolecek 
   1817      1.73  jmcneill 	mutex_enter(sc->lock);
   1818      1.31  christos 	SLIST_REMOVE(&sc->wsel.sel_klist, kn, knote, kn_selnext);
   1819      1.73  jmcneill 	mutex_exit(sc->lock);
   1820      1.30  jdolecek }
   1821      1.30  jdolecek 
   1822      1.30  jdolecek static int
   1823      1.50  christos filt_midiwrite(struct knote *kn, long hint)
   1824      1.30  jdolecek {
   1825      1.30  jdolecek 	struct midi_softc *sc = kn->kn_hook;
   1826      1.44      chap 	MIDI_BUF_DECLARE(idx);
   1827      1.44      chap 	MIDI_BUF_DECLARE(buf);
   1828      1.30  jdolecek 
   1829      1.82       mrg 	mutex_exit(sc->lock);
   1830      1.82       mrg 	sc->refcnt++;
   1831      1.82       mrg 	mutex_enter(sc->lock);
   1832      1.82       mrg 
   1833      1.79    martin 	(void)idx_end; (void)buf_end;
   1834      1.73  jmcneill 	if (hint != NOTE_SUBMIT)
   1835      1.73  jmcneill 		mutex_enter(sc->lock);
   1836      1.44      chap 	MIDI_BUF_PRODUCER_INIT(&sc->outbuf,idx);
   1837      1.44      chap 	MIDI_BUF_PRODUCER_INIT(&sc->outbuf,buf);
   1838      1.44      chap 	kn->kn_data = ((buf_lim - buf_cur)-1)>>1;
   1839      1.73  jmcneill 	if (kn->kn_data > idx_lim - idx_cur)
   1840      1.44      chap 		kn->kn_data = idx_lim - idx_cur;
   1841      1.73  jmcneill 	if (hint != NOTE_SUBMIT)
   1842      1.73  jmcneill 		mutex_exit(sc->lock);
   1843      1.82       mrg 
   1844      1.82       mrg 	// XXXMRG -- move this up, avoid the relock?
   1845      1.82       mrg 	mutex_enter(sc->lock);
   1846      1.82       mrg 	if (--sc->refcnt < 0)
   1847      1.82       mrg 		cv_broadcast(&sc->detach_cv);
   1848      1.82       mrg 	mutex_exit(sc->lock);
   1849      1.82       mrg 
   1850      1.30  jdolecek 	return (kn->kn_data > 0);
   1851      1.30  jdolecek }
   1852      1.30  jdolecek 
   1853      1.30  jdolecek static const struct filterops midiwrite_filtops =
   1854      1.30  jdolecek 	{ 1, NULL, filt_midiwdetach, filt_midiwrite };
   1855      1.30  jdolecek 
   1856      1.30  jdolecek int
   1857      1.30  jdolecek midikqfilter(dev_t dev, struct knote *kn)
   1858      1.30  jdolecek {
   1859  1.85.2.1  pgoyette 	device_t self;
   1860  1.85.2.1  pgoyette 	struct midi_softc *sc;
   1861      1.30  jdolecek 	struct klist *klist;
   1862      1.30  jdolecek 
   1863  1.85.2.1  pgoyette 	self = device_lookup_acquire(&midi_cd, MIDIUNIT(dev));
   1864  1.85.2.1  pgoyette 	if (self == NULL)
   1865  1.85.2.1  pgoyette 		return ENXIO;
   1866  1.85.2.1  pgoyette 	sc = device_private(self);
   1867  1.85.2.1  pgoyette 
   1868      1.82       mrg 	mutex_exit(sc->lock);
   1869      1.82       mrg 	sc->refcnt++;
   1870      1.82       mrg 	mutex_enter(sc->lock);
   1871      1.82       mrg 
   1872      1.30  jdolecek 	switch (kn->kn_filter) {
   1873      1.30  jdolecek 	case EVFILT_READ:
   1874      1.31  christos 		klist = &sc->rsel.sel_klist;
   1875      1.30  jdolecek 		kn->kn_fop = &midiread_filtops;
   1876      1.30  jdolecek 		break;
   1877      1.30  jdolecek 
   1878      1.30  jdolecek 	case EVFILT_WRITE:
   1879      1.31  christos 		klist = &sc->wsel.sel_klist;
   1880      1.30  jdolecek 		kn->kn_fop = &midiwrite_filtops;
   1881      1.30  jdolecek 		break;
   1882      1.30  jdolecek 
   1883      1.30  jdolecek 	default:
   1884  1.85.2.1  pgoyette 		device_release(self);
   1885      1.58     pooka 		return (EINVAL);
   1886      1.30  jdolecek 	}
   1887      1.30  jdolecek 
   1888      1.30  jdolecek 	kn->kn_hook = sc;
   1889      1.30  jdolecek 
   1890      1.73  jmcneill 	mutex_enter(sc->lock);
   1891      1.30  jdolecek 	SLIST_INSERT_HEAD(klist, kn, kn_selnext);
   1892      1.82       mrg 	if (--sc->refcnt < 0)
   1893      1.82       mrg 		cv_broadcast(&sc->detach_cv);
   1894      1.73  jmcneill 	mutex_exit(sc->lock);
   1895      1.30  jdolecek 
   1896  1.85.2.1  pgoyette 	device_release(self);
   1897      1.30  jdolecek 	return (0);
   1898       1.1  augustss }
   1899       1.1  augustss 
   1900       1.1  augustss void
   1901      1.22  augustss midi_getinfo(dev_t dev, struct midi_info *mi)
   1902       1.1  augustss {
   1903  1.85.2.1  pgoyette 	device_t self;
   1904       1.1  augustss 	struct midi_softc *sc;
   1905       1.1  augustss 
   1906  1.85.2.1  pgoyette 	self = device_lookup_acquire(&midi_cd, MIDIUNIT(dev));
   1907  1.85.2.1  pgoyette 	if (self == NULL)
   1908      1.18  tshiozak 		return;
   1909  1.85.2.1  pgoyette 	sc = device_private(self);
   1910  1.85.2.1  pgoyette 
   1911      1.73  jmcneill 	mutex_enter(sc->lock);
   1912       1.1  augustss 	sc->hw_if->getinfo(sc->hw_hdl, mi);
   1913      1.73  jmcneill 	mutex_exit(sc->lock);
   1914  1.85.2.1  pgoyette 	device_release(self);
   1915       1.4  augustss }
   1916       1.4  augustss 
   1917      1.45      chap #elif NMIDIBUS > 0 /* but NMIDI == 0 */
   1918      1.45      chap 
   1919      1.73  jmcneill void
   1920      1.73  jmcneill midi_register_hw_if_ext(struct midi_hw_if_ext *exthw)
   1921      1.73  jmcneill {
   1922      1.73  jmcneill 
   1923      1.73  jmcneill 	/* nothing */
   1924      1.45      chap }
   1925      1.45      chap 
   1926      1.10  drochner #endif /* NMIDI > 0 */
   1927      1.10  drochner 
   1928      1.10  drochner #if NMIDI > 0 || NMIDIBUS > 0
   1929      1.10  drochner 
   1930      1.61      cube device_t
   1931      1.61      cube midi_attach_mi(const struct midi_hw_if *mhwp, void *hdlp, device_t dev)
   1932       1.4  augustss {
   1933       1.4  augustss 	struct audio_attach_args arg;
   1934       1.4  augustss 
   1935       1.4  augustss 	if (mhwp == NULL) {
   1936      1.73  jmcneill 		panic("midi_attach_mi: NULL\n");
   1937      1.12  augustss 		return (0);
   1938       1.4  augustss 	}
   1939      1.73  jmcneill 
   1940       1.4  augustss 	arg.type = AUDIODEV_TYPE_MIDI;
   1941       1.4  augustss 	arg.hwif = mhwp;
   1942       1.4  augustss 	arg.hdl = hdlp;
   1943      1.12  augustss 	return (config_found(dev, &arg, audioprint));
   1944       1.1  augustss }
   1945       1.1  augustss 
   1946      1.10  drochner #endif /* NMIDI > 0 || NMIDIBUS > 0 */
   1947