Home | History | Annotate | Line # | Download | only in dev
midisyn.c revision 1.21.38.1
      1  1.21.38.1      yamt /*	$NetBSD: midisyn.c,v 1.21.38.1 2008/05/18 12:33:30 yamt Exp $	*/
      2        1.1  augustss 
      3        1.1  augustss /*
      4        1.1  augustss  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5        1.1  augustss  * All rights reserved.
      6        1.1  augustss  *
      7        1.5  augustss  * This code is derived from software contributed to The NetBSD Foundation
      8       1.13    keihan  * by Lennart Augustsson (augustss (at) NetBSD.org).
      9        1.1  augustss  *
     10        1.1  augustss  * Redistribution and use in source and binary forms, with or without
     11        1.1  augustss  * modification, are permitted provided that the following conditions
     12        1.1  augustss  * are met:
     13        1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     14        1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     15        1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     17        1.1  augustss  *    documentation and/or other materials provided with the distribution.
     18        1.1  augustss  *
     19        1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20        1.1  augustss  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21        1.1  augustss  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22        1.1  augustss  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23        1.1  augustss  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24        1.1  augustss  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25        1.1  augustss  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26        1.1  augustss  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27        1.1  augustss  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28        1.1  augustss  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29        1.1  augustss  * POSSIBILITY OF SUCH DAMAGE.
     30        1.1  augustss  */
     31        1.9     lukem 
     32        1.9     lukem #include <sys/cdefs.h>
     33  1.21.38.1      yamt __KERNEL_RCSID(0, "$NetBSD: midisyn.c,v 1.21.38.1 2008/05/18 12:33:30 yamt Exp $");
     34        1.1  augustss 
     35        1.1  augustss #include <sys/param.h>
     36        1.1  augustss #include <sys/ioctl.h>
     37        1.1  augustss #include <sys/fcntl.h>
     38        1.1  augustss #include <sys/vnode.h>
     39        1.1  augustss #include <sys/select.h>
     40        1.1  augustss #include <sys/proc.h>
     41        1.1  augustss #include <sys/malloc.h>
     42        1.1  augustss #include <sys/systm.h>
     43        1.1  augustss #include <sys/syslog.h>
     44        1.1  augustss #include <sys/kernel.h>
     45        1.1  augustss #include <sys/audioio.h>
     46        1.1  augustss #include <sys/midiio.h>
     47        1.1  augustss #include <sys/device.h>
     48        1.1  augustss 
     49        1.1  augustss #include <dev/audio_if.h>
     50        1.3  augustss #include <dev/midi_if.h>
     51        1.1  augustss #include <dev/midivar.h>
     52        1.1  augustss #include <dev/midisynvar.h>
     53        1.1  augustss 
     54        1.1  augustss #ifdef AUDIO_DEBUG
     55        1.1  augustss #define DPRINTF(x)	if (midisyndebug) printf x
     56        1.1  augustss #define DPRINTFN(n,x)	if (midisyndebug >= (n)) printf x
     57        1.1  augustss int	midisyndebug = 0;
     58        1.1  augustss #else
     59        1.1  augustss #define DPRINTF(x)
     60        1.1  augustss #define DPRINTFN(n,x)
     61        1.1  augustss #endif
     62        1.1  augustss 
     63        1.8  augustss int	midisyn_findvoice(midisyn *, int, int);
     64        1.8  augustss void	midisyn_freevoice(midisyn *, int);
     65       1.18      chap uint_fast16_t	midisyn_allocvoice(midisyn *, uint_fast8_t, uint_fast8_t);
     66       1.18      chap static void	midisyn_attackv_vel(midisyn *, uint_fast16_t, midipitch_t,
     67       1.18      chap                                     int16_t, uint_fast8_t);
     68       1.18      chap 
     69       1.18      chap static midictl_notify midisyn_notify;
     70       1.18      chap 
     71       1.18      chap static midipitch_t midisyn_clamp_pitch(midipitch_t);
     72       1.18      chap static int16_t midisyn_adj_level(midisyn *, uint_fast8_t);
     73       1.18      chap static midipitch_t midisyn_adj_pitch(midisyn *, uint_fast8_t);
     74       1.18      chap static void midisyn_chan_releasev(midisyn *, uint_fast8_t, uint_fast8_t);
     75       1.18      chap static void midisyn_upd_level(midisyn *, uint_fast8_t);
     76       1.18      chap static void midisyn_upd_pitch(midisyn *, uint_fast8_t);
     77        1.8  augustss 
     78       1.15     perry int	midisyn_open(void *, int,
     79        1.8  augustss 		     void (*iintr)(void *, int),
     80        1.8  augustss 		     void (*ointr)(void *), void *arg);
     81        1.8  augustss void	midisyn_close(void *);
     82       1.18      chap int	midisyn_sysrt(void *, int);
     83        1.8  augustss void	midisyn_getinfo(void *, struct midi_info *);
     84       1.21  christos int	midisyn_ioctl(void *, u_long, void *, int, struct lwp *);
     85        1.1  augustss 
     86       1.14      yamt const struct midi_hw_if midisyn_hw_if = {
     87        1.1  augustss 	midisyn_open,
     88        1.1  augustss 	midisyn_close,
     89       1.18      chap 	midisyn_sysrt,
     90        1.1  augustss 	midisyn_getinfo,
     91        1.1  augustss 	midisyn_ioctl,
     92        1.1  augustss };
     93        1.1  augustss 
     94       1.18      chap int	midisyn_channelmsg(void *, int, int, u_char *, int);
     95       1.18      chap int	midisyn_commonmsg(void *, int, u_char *, int);
     96       1.18      chap int	midisyn_sysex(void *, u_char *, int);
     97       1.18      chap 
     98       1.18      chap struct midi_hw_if_ext midisyn_hw_if_ext = {
     99       1.18      chap 	.channel = midisyn_channelmsg,
    100       1.18      chap 	.common  = midisyn_commonmsg,
    101       1.18      chap 	.sysex   = midisyn_sysex,
    102       1.18      chap };
    103       1.18      chap 
    104       1.18      chap struct channelstate { /* dyamically allocated in open() on account of size */
    105       1.18      chap 	/* volume state components in centibels; just sum for overall level */
    106       1.18      chap 	int16_t volume;
    107       1.18      chap 	int16_t expression;
    108       1.18      chap 	/* pitch state components in midipitch units; sum for overall effect */
    109       1.18      chap 	midipitch_t bend;
    110       1.18      chap 	midipitch_t tuning_fine;
    111       1.18      chap 	midipitch_t tuning_coarse;
    112       1.18      chap 	/* used by bend handlers */
    113       1.18      chap 	int16_t bendraw;
    114       1.18      chap 	int16_t pendingreset;
    115       1.18      chap /* rearrange as more controls supported - 16 bits should last for a while */
    116       1.18      chap #define PEND_VOL 1
    117       1.18      chap #define PEND_EXP 2
    118       1.18      chap #define PEND_LEVEL (PEND_VOL|PEND_EXP)
    119       1.18      chap #define PEND_PBS 4
    120       1.18      chap #define PEND_TNF 8
    121       1.18      chap #define PEND_TNC 16
    122       1.18      chap #define PEND_PITCH (PEND_PBS|PEND_TNF|PEND_TNC)
    123       1.18      chap #define PEND_ALL   (PEND_LEVEL|PEND_PITCH)
    124       1.18      chap };
    125        1.1  augustss 
    126        1.1  augustss int
    127       1.20  christos midisyn_open(void *addr, int flags, void (*iintr)(void *, int),
    128       1.20  christos     void (*ointr)(void *), void *arg)
    129        1.1  augustss {
    130        1.1  augustss 	midisyn *ms = addr;
    131       1.18      chap 	int rslt;
    132       1.18      chap 	uint_fast8_t chan;
    133        1.1  augustss 
    134        1.1  augustss 	DPRINTF(("midisyn_open: ms=%p ms->mets=%p\n", ms, ms->mets));
    135       1.18      chap 
    136       1.18      chap 	midictl_open(&ms->ctl);
    137       1.18      chap 
    138       1.18      chap 	ms->chnstate = malloc(MIDI_MAX_CHANS*sizeof *(ms->chnstate),
    139       1.18      chap 	                      M_DEVBUF, M_WAITOK); /* init'd by RESET below */
    140       1.18      chap 
    141       1.18      chap 	rslt = 0;
    142        1.1  augustss 	if (ms->mets->open)
    143       1.18      chap 		rslt = (ms->mets->open(ms, flags));
    144       1.18      chap 
    145       1.18      chap 	/*
    146       1.18      chap 	 * Make the right initial things happen by faking receipt of RESET on
    147       1.18      chap 	 * all channels. The hw driver's ctlnotice() will be called in turn.
    148       1.18      chap 	 */
    149       1.18      chap 	for ( chan = 0 ; chan < MIDI_MAX_CHANS ; ++ chan )
    150       1.18      chap 		midisyn_notify(ms, MIDICTL_RESET, chan, 0);
    151       1.18      chap 
    152       1.18      chap 	return rslt;
    153        1.1  augustss }
    154        1.1  augustss 
    155        1.1  augustss void
    156        1.8  augustss midisyn_close(void *addr)
    157        1.1  augustss {
    158        1.1  augustss 	midisyn *ms = addr;
    159        1.4   mycroft 	struct midisyn_methods *fs;
    160       1.18      chap 	int chan;
    161        1.1  augustss 
    162        1.1  augustss 	DPRINTF(("midisyn_close: ms=%p ms->mets=%p\n", ms, ms->mets));
    163        1.4   mycroft 	fs = ms->mets;
    164       1.18      chap 
    165       1.18      chap 	for (chan = 0; chan < MIDI_MAX_CHANS; chan++)
    166       1.18      chap 		midisyn_notify(ms, MIDICTL_SOUND_OFF, chan, 0);
    167       1.18      chap 
    168        1.4   mycroft 	if (fs->close)
    169        1.4   mycroft 		fs->close(ms);
    170       1.18      chap 
    171       1.18      chap 	free(ms->chnstate, M_DEVBUF);
    172       1.18      chap 
    173       1.18      chap 	midictl_close(&ms->ctl);
    174        1.1  augustss }
    175        1.1  augustss 
    176        1.1  augustss void
    177        1.8  augustss midisyn_getinfo(void *addr, struct midi_info *mi)
    178        1.1  augustss {
    179        1.1  augustss 	midisyn *ms = addr;
    180        1.1  augustss 
    181        1.1  augustss 	mi->name = ms->name;
    182       1.18      chap 	/*
    183       1.18      chap 	 * I was going to add a property here to suppress midi(4)'s warning
    184       1.18      chap 	 * about an output device that uses no transmit interrupt, on the
    185       1.18      chap 	 * assumption that as an onboard synth we handle "output" internally
    186       1.18      chap 	 * with nothing like the 320 us per byte busy wait of a dumb UART.
    187       1.18      chap 	 * Then I noticed that opl (at least as currently implemented) seems
    188       1.18      chap 	 * to need 40 us busy wait to set each register on an OPL2, and sets
    189       1.18      chap 	 * about 21 registers for every note-on. (Half of that is patch loading
    190       1.18      chap 	 * and could probably be reduced by different management of voices and
    191       1.18      chap 	 * patches.) For now I won't bother suppressing that warning....
    192       1.18      chap 	 */
    193        1.1  augustss 	mi->props = 0;
    194       1.18      chap 
    195       1.18      chap 	midi_register_hw_if_ext(&midisyn_hw_if_ext);
    196        1.1  augustss }
    197        1.1  augustss 
    198        1.1  augustss int
    199       1.21  christos midisyn_ioctl(void *maddr, u_long cmd, void *addr, int flag, struct lwp *l)
    200        1.1  augustss {
    201        1.1  augustss 	midisyn *ms = maddr;
    202        1.1  augustss 
    203        1.1  augustss 	if (ms->mets->ioctl)
    204       1.16  christos 		return (ms->mets->ioctl(ms, cmd, addr, flag, l));
    205        1.1  augustss 	else
    206        1.1  augustss 		return (EINVAL);
    207        1.1  augustss }
    208        1.1  augustss 
    209        1.1  augustss int
    210        1.8  augustss midisyn_findvoice(midisyn *ms, int chan, int note)
    211        1.1  augustss {
    212        1.1  augustss 	u_int cn;
    213        1.1  augustss 	int v;
    214        1.1  augustss 
    215        1.3  augustss 	cn = MS_CHANNOTE(chan, note);
    216        1.1  augustss 	for (v = 0; v < ms->nvoice; v++)
    217        1.3  augustss 		if (ms->voices[v].chan_note == cn && ms->voices[v].inuse)
    218        1.1  augustss 			return (v);
    219        1.1  augustss 	return (-1);
    220        1.1  augustss }
    221        1.1  augustss 
    222        1.1  augustss void
    223        1.8  augustss midisyn_attach(struct midi_softc *sc, midisyn *ms)
    224        1.1  augustss {
    225       1.18      chap 	/*
    226       1.18      chap 	 * XXX there should be a way for this function to indicate failure
    227       1.18      chap 	 * (other than panic) if some preconditions aren't met, for example
    228       1.18      chap 	 * if some nonoptional methods are missing.
    229       1.18      chap 	 */
    230       1.18      chap 	if (ms->mets->allocv == 0) {
    231       1.15     perry 		ms->voices = malloc(ms->nvoice * sizeof (struct voice),
    232       1.10   tsutsui 				    M_DEVBUF, M_WAITOK|M_ZERO);
    233        1.1  augustss 		ms->seqno = 1;
    234       1.18      chap 		ms->mets->allocv = midisyn_allocvoice;
    235        1.1  augustss 	}
    236       1.18      chap 
    237       1.18      chap 	if (ms->mets->attackv_vel == 0 && ms->mets->attackv != 0)
    238       1.18      chap 		ms->mets->attackv_vel = midisyn_attackv_vel;
    239       1.18      chap 
    240       1.18      chap 	ms->ctl = (midictl) {
    241       1.18      chap 		.base_channel = 16,
    242       1.18      chap 		.cookie = ms,
    243       1.18      chap 		.notify = midisyn_notify
    244       1.18      chap 	};
    245       1.18      chap 
    246        1.1  augustss 	sc->hw_if = &midisyn_hw_if;
    247        1.1  augustss 	sc->hw_hdl = ms;
    248        1.1  augustss 	DPRINTF(("midisyn_attach: ms=%p\n", sc->hw_hdl));
    249        1.1  augustss }
    250        1.1  augustss 
    251        1.1  augustss void
    252        1.8  augustss midisyn_freevoice(midisyn *ms, int voice)
    253        1.1  augustss {
    254       1.18      chap 	if (ms->mets->allocv != midisyn_allocvoice)
    255        1.1  augustss 		return;
    256        1.3  augustss 	ms->voices[voice].inuse = 0;
    257        1.1  augustss }
    258        1.1  augustss 
    259       1.18      chap uint_fast16_t
    260       1.18      chap midisyn_allocvoice(midisyn *ms, uint_fast8_t chan, uint_fast8_t note)
    261        1.1  augustss {
    262        1.1  augustss 	int bestv, v;
    263        1.1  augustss 	u_int bestseq, s;
    264        1.1  augustss 
    265        1.1  augustss 	/* Find a free voice, or if no free voice is found the oldest. */
    266        1.1  augustss 	bestv = 0;
    267        1.3  augustss 	bestseq = ms->voices[0].seqno + (ms->voices[0].inuse ? 0x40000000 : 0);
    268        1.1  augustss 	for (v = 1; v < ms->nvoice; v++) {
    269        1.1  augustss 		s = ms->voices[v].seqno;
    270        1.3  augustss 		if (ms->voices[v].inuse)
    271        1.3  augustss 			s += 0x40000000;
    272        1.1  augustss 		if (s < bestseq) {
    273        1.1  augustss 			bestseq = s;
    274        1.1  augustss 			bestv = v;
    275        1.1  augustss 		}
    276        1.1  augustss 	}
    277        1.3  augustss 	DPRINTFN(10,("midisyn_allocvoice: v=%d seq=%d cn=%x inuse=%d\n",
    278       1.15     perry 		     bestv, ms->voices[bestv].seqno,
    279        1.3  augustss 		     ms->voices[bestv].chan_note,
    280        1.3  augustss 		     ms->voices[bestv].inuse));
    281        1.3  augustss #ifdef AUDIO_DEBUG
    282        1.3  augustss 	if (ms->voices[bestv].inuse)
    283       1.15     perry 		DPRINTFN(1,("midisyn_allocvoice: steal %x\n",
    284        1.3  augustss 			    ms->voices[bestv].chan_note));
    285        1.3  augustss #endif
    286        1.3  augustss 	ms->voices[bestv].chan_note = MS_CHANNOTE(chan, note);
    287        1.1  augustss 	ms->voices[bestv].seqno = ms->seqno++;
    288        1.3  augustss 	ms->voices[bestv].inuse = 1;
    289        1.1  augustss 	return (bestv);
    290        1.1  augustss }
    291        1.1  augustss 
    292       1.18      chap /* dummy attackv_vel that just adds vel into level for simple drivers */
    293       1.18      chap static void
    294       1.18      chap midisyn_attackv_vel(midisyn *ms, uint_fast16_t voice, midipitch_t mp,
    295       1.18      chap                     int16_t level_cB, uint_fast8_t vel)
    296       1.18      chap {
    297       1.18      chap 	ms->voices[voice].velcB = midisyn_vol2cB((uint_fast16_t)vel << 7);
    298       1.18      chap 	ms->mets->attackv(ms, voice, mp, level_cB + ms->voices[voice].velcB);
    299       1.18      chap }
    300       1.18      chap 
    301        1.1  augustss int
    302       1.20  christos midisyn_sysrt(void *addr, int b)
    303       1.18      chap {
    304       1.18      chap 	return 0;
    305       1.18      chap }
    306       1.18      chap 
    307       1.19  christos int midisyn_channelmsg(void *addr, int status, int chan, u_char *buf,
    308       1.20  christos     int len)
    309        1.1  augustss {
    310        1.1  augustss 	midisyn *ms = addr;
    311        1.1  augustss 	int voice = 0;		/* initialize to keep gcc quiet */
    312        1.1  augustss 	struct midisyn_methods *fs;
    313        1.1  augustss 
    314       1.18      chap 	DPRINTF(("midisyn_channelmsg: ms=%p status=%#02x chan=%d\n",
    315       1.18      chap 	       ms, status, chan));
    316        1.1  augustss 	fs = ms->mets;
    317       1.18      chap 
    318       1.18      chap 	switch (status) {
    319        1.1  augustss 	case MIDI_NOTEOFF:
    320       1.18      chap 		/*
    321       1.18      chap 		 * for a device that leaves voice allocation to us--and that's
    322       1.18      chap 		 * all of 'em at the moment--the voice and release velocity
    323       1.18      chap 		 * should be the only necessary arguments to noteoff. what use
    324       1.18      chap 		 * are they making of note? checking... None. Cool.
    325       1.18      chap 		 * IF there is ever a device added that does its own allocation,
    326       1.18      chap 		 * extend the interface; this findvoice won't be what to do...
    327       1.18      chap 		 */
    328       1.18      chap 		voice = midisyn_findvoice(ms, chan, buf[1]);
    329        1.1  augustss 		if (voice >= 0) {
    330       1.18      chap 			fs->releasev(ms, voice, buf[2]);
    331        1.1  augustss 			midisyn_freevoice(ms, voice);
    332        1.1  augustss 		}
    333        1.1  augustss 		break;
    334        1.1  augustss 	case MIDI_NOTEON:
    335       1.18      chap 		/*
    336       1.18      chap 		 * what's called for here, given current drivers, is an i/f
    337       1.18      chap 		 * where midisyn computes a volume from vel*volume*expression*
    338       1.18      chap 		 * mastervolume and passes that result as a single arg. It can
    339       1.18      chap 		 * evolve later to support drivers that expose some of those
    340       1.18      chap 		 * bits separately (e.g. a driver could expose a mixer register
    341       1.18      chap 		 * on its sound card and use that for mastervolume).
    342       1.18      chap 		 */
    343       1.18      chap 		voice = fs->allocv(ms, chan, buf[1]);
    344       1.18      chap 		ms->voices[voice].velcB = 0; /* assume driver handles vel */
    345       1.18      chap 		fs->attackv_vel(ms, voice,
    346       1.18      chap 		    midisyn_clamp_pitch(MIDIPITCH_FROM_KEY(buf[1]) +
    347       1.18      chap 		                        midisyn_adj_pitch(ms, chan)),
    348       1.18      chap 		    midisyn_adj_level(ms,chan), buf[2]);
    349        1.1  augustss 		break;
    350        1.1  augustss 	case MIDI_KEY_PRESSURE:
    351       1.18      chap 		/*
    352       1.18      chap 		 * unimplemented by the existing drivers. if we are doing
    353       1.18      chap 		 * voice allocation, find the voice that corresponds to this
    354       1.18      chap 		 * chan/note and define a method that passes the voice and
    355       1.18      chap 		 * pressure to the driver ... not the note, /it/ doesn't matter.
    356       1.18      chap 		 * For a driver that does its own allocation, a different
    357       1.18      chap 		 * method may be needed passing pressure, chan, note so it can
    358       1.18      chap 		 * find the right voice on its own. Be sure that whatever is
    359       1.18      chap 		 * done here is undone when midisyn_notify sees MIDICTL_RESET.
    360       1.18      chap 		 */
    361        1.1  augustss 		break;
    362        1.1  augustss 	case MIDI_CTL_CHANGE:
    363       1.18      chap 		midictl_change(&ms->ctl, chan, buf+1);
    364        1.1  augustss 		break;
    365        1.1  augustss 	case MIDI_PGM_CHANGE:
    366        1.1  augustss 		if (fs->pgmchg)
    367       1.18      chap 			fs->pgmchg(ms, chan, buf[1]);
    368        1.1  augustss 		break;
    369        1.1  augustss 	case MIDI_CHN_PRESSURE:
    370       1.18      chap 		/*
    371       1.18      chap 		 * unimplemented by the existing drivers. if driver exposes no
    372       1.18      chap 		 * distinct method, can use KEY_PRESSURE method for each voice
    373       1.18      chap 		 * on channel. Be sure that whatever is
    374       1.18      chap 		 * done here is undone when midisyn_notify sees MIDICTL_RESET.
    375       1.18      chap 		 */
    376        1.1  augustss 		break;
    377        1.1  augustss 	case MIDI_PITCH_BEND:
    378       1.18      chap 		/*
    379       1.18      chap 		 * Will work for most drivers that simply render the midipitch
    380       1.18      chap 		 * as we pass it (but not cms, which chops all the bits after
    381       1.18      chap 		 * the note number and then computes its own pitch :( ). If the
    382       1.18      chap 		 * driver has a repitchv method for voices already sounding, so
    383       1.18      chap 		 * much the better.
    384       1.18      chap 		 * The bending logic lives in the handler for bend sensitivity,
    385       1.18      chap 		 * so fake a change to that to kick it off.
    386       1.18      chap 		 */
    387       1.18      chap 		ms->chnstate[chan].bendraw = buf[2]<<7 | buf[1];
    388       1.18      chap 		ms->chnstate[chan].bendraw -= MIDI_BEND_NEUTRAL;
    389       1.18      chap 		midisyn_notify(ms, MIDICTL_RPN, chan,
    390       1.18      chap 		               MIDI_RPN_PITCH_BEND_SENSITIVITY);
    391        1.1  augustss 		break;
    392        1.1  augustss 	}
    393       1.18      chap 	return 0;
    394        1.1  augustss }
    395        1.1  augustss 
    396       1.20  christos int midisyn_commonmsg(void *addr, int status,
    397       1.20  christos     u_char *buf, int len)
    398        1.1  augustss {
    399       1.18      chap 	return 0;
    400       1.18      chap }
    401        1.1  augustss 
    402       1.20  christos int midisyn_sysex(void *addr, u_char *buf, int len)
    403       1.18      chap {
    404       1.18      chap 	/*
    405       1.18      chap 	 * unimplemented by existing drivers. it is surely more sensible
    406       1.18      chap 	 * to do some parsing of well-defined sysex messages here, either
    407       1.18      chap 	 * handling them internally or calling specific methods on the
    408       1.18      chap 	 * driver after parsing out the details, than to ask every driver
    409       1.18      chap 	 * to deal with sysex messages poked at it a byte at a time.
    410       1.18      chap 	 */
    411       1.18      chap 	return 0;
    412       1.18      chap }
    413       1.18      chap 
    414       1.18      chap static void
    415       1.18      chap midisyn_notify(void *cookie, midictl_evt evt,
    416       1.18      chap                uint_fast8_t chan, uint_fast16_t key)
    417       1.18      chap {
    418       1.18      chap 	struct midisyn *ms;
    419       1.18      chap 	int drvhandled;
    420       1.18      chap 
    421       1.18      chap 	ms = (struct midisyn *)cookie;
    422       1.18      chap 	drvhandled = 0;
    423       1.18      chap 	if ( ms->mets->ctlnotice )
    424       1.18      chap 		drvhandled = ms->mets->ctlnotice(ms, evt, chan, key);
    425       1.18      chap 
    426       1.18      chap 	switch ( evt | key ) {
    427       1.18      chap 	case MIDICTL_RESET:
    428       1.18      chap 		/*
    429       1.18      chap 		 * Re-read all ctls we use, revert pitchbend state.
    430       1.18      chap 		 * Can do it by faking change notifications.
    431       1.18      chap 		 */
    432       1.18      chap 		ms->chnstate[chan].pendingreset |= PEND_ALL;
    433       1.18      chap 		midisyn_notify(ms, MIDICTL_CTLR, chan,
    434       1.18      chap 		               MIDI_CTRL_CHANNEL_VOLUME_MSB);
    435       1.18      chap 		midisyn_notify(ms, MIDICTL_CTLR, chan,
    436       1.18      chap 		               MIDI_CTRL_EXPRESSION_MSB);
    437       1.18      chap 		ms->chnstate[chan].bendraw = 0; /* MIDI_BEND_NEUTRAL - itself */
    438       1.18      chap 		midisyn_notify(ms, MIDICTL_RPN, chan,
    439       1.18      chap 		               MIDI_RPN_PITCH_BEND_SENSITIVITY);
    440       1.18      chap 		midisyn_notify(ms, MIDICTL_RPN, chan,
    441       1.18      chap 		               MIDI_RPN_CHANNEL_FINE_TUNING);
    442       1.18      chap 		midisyn_notify(ms, MIDICTL_RPN, chan,
    443       1.18      chap 		               MIDI_RPN_CHANNEL_COARSE_TUNING);
    444       1.18      chap 		break;
    445       1.18      chap 	case MIDICTL_NOTES_OFF:
    446       1.18      chap 		if ( drvhandled )
    447       1.18      chap 			break;
    448       1.18      chap 		/* releasev all voices sounding on chan; use normal vel 64 */
    449       1.18      chap 		midisyn_chan_releasev(ms, chan, 64);
    450       1.18      chap 		break;
    451       1.18      chap 	case MIDICTL_SOUND_OFF:
    452       1.18      chap 		if ( drvhandled )
    453       1.18      chap 			break;
    454       1.18      chap 		/* releasev all voices sounding on chan; use max vel 127 */
    455       1.18      chap 		/* it is really better for driver to handle this, instantly */
    456       1.18      chap 		midisyn_chan_releasev(ms, chan, 127);
    457       1.18      chap 		break;
    458       1.18      chap 	case MIDICTL_CTLR | MIDI_CTRL_CHANNEL_VOLUME_MSB:
    459       1.18      chap 		ms->chnstate[chan].pendingreset &= ~PEND_VOL;
    460       1.18      chap 		if ( drvhandled ) {
    461       1.18      chap 			ms->chnstate[chan].volume = 0;
    462       1.18      chap 			break;
    463       1.18      chap 		}
    464       1.18      chap 		ms->chnstate[chan].volume = midisyn_vol2cB(
    465       1.18      chap 	    	    midictl_read(&ms->ctl, chan, key, 100<<7));
    466       1.18      chap 		midisyn_upd_level(ms, chan);
    467       1.18      chap 		break;
    468       1.18      chap 	case MIDICTL_CTLR | MIDI_CTRL_EXPRESSION_MSB:
    469       1.18      chap 		ms->chnstate[chan].pendingreset &= ~PEND_EXP;
    470       1.18      chap 		if ( drvhandled ) {
    471       1.18      chap 			ms->chnstate[chan].expression = 0;
    472       1.18      chap 			break;
    473       1.18      chap 		}
    474       1.18      chap 		ms->chnstate[chan].expression = midisyn_vol2cB(
    475       1.18      chap 	    	    midictl_read(&ms->ctl, chan, key, 16383));
    476       1.18      chap 		midisyn_upd_level(ms, chan);
    477       1.18      chap 		break;
    478       1.18      chap 	/*
    479       1.18      chap 	 * SOFT_PEDAL: supporting this will be trickier; must apply only
    480       1.18      chap 	 * to notes subsequently struck, and must remember which voices
    481       1.18      chap 	 * they are for follow-on adjustments. For another day....
    482       1.18      chap 	 */
    483       1.18      chap 	case MIDICTL_RPN | MIDI_RPN_PITCH_BEND_SENSITIVITY:
    484       1.18      chap 		ms->chnstate[chan].pendingreset &= ~PEND_PBS;
    485       1.18      chap 		if ( drvhandled )
    486       1.18      chap 			ms->chnstate[chan].bend = 0;
    487       1.18      chap 		else {
    488       1.18      chap 			uint16_t w;
    489       1.18      chap 			int8_t semis, cents;
    490       1.18      chap 			w = midictl_rpn_read(&ms->ctl, chan, key, 2<<7);
    491       1.18      chap 			semis = w>>7;
    492       1.18      chap 			cents = w&0x7f;
    493       1.18      chap 			/*
    494       1.18      chap 			 * Mathematically, multiply semis by
    495       1.18      chap 			 * MIDIPITCH_SEMITONE*bendraw/8192. Practically, avoid
    496       1.18      chap 			 * shifting significant bits off by observing that
    497       1.18      chap 			 * MIDIPITCH_SEMITONE == 1<<14 and 8192 == 1<<13, so
    498       1.18      chap 			 * just take semis*bendraw<<1. Do the same with cents
    499       1.18      chap 			 * except <<1 becomes /50 (but rounded).
    500       1.18      chap 			 */
    501       1.18      chap 			ms->chnstate[chan].bend =
    502       1.18      chap 			    ( ms->chnstate[chan].bendraw * semis ) << 1;
    503       1.18      chap 			ms->chnstate[chan].bend +=
    504       1.18      chap 			    ((ms->chnstate[chan].bendraw * cents)/25 + 1) >> 1;
    505       1.18      chap 			midisyn_upd_pitch(ms, chan);
    506       1.18      chap 		}
    507       1.18      chap 		break;
    508       1.18      chap 	case MIDICTL_RPN | MIDI_RPN_CHANNEL_FINE_TUNING:
    509       1.18      chap 		if ( drvhandled )
    510       1.18      chap 			ms->chnstate[chan].tuning_fine = 0;
    511       1.18      chap 		else {
    512       1.18      chap 			midipitch_t mp;
    513       1.18      chap 			mp = midictl_rpn_read(&ms->ctl, chan, key, 8192);
    514       1.18      chap 			/*
    515       1.18      chap 			 * Mathematically, subtract 8192 and scale by
    516       1.18      chap 			 * MIDIPITCH_SEMITONE/8192. Practically, subtract 8192
    517       1.18      chap 			 * and then << 1.
    518       1.18      chap 			 */
    519       1.18      chap 			ms->chnstate[chan].tuning_fine = ( mp - 8192 ) << 1;
    520       1.18      chap 			midisyn_upd_pitch(ms, chan);
    521       1.18      chap 		}
    522       1.18      chap 		break;
    523       1.18      chap 	case MIDICTL_RPN | MIDI_RPN_CHANNEL_COARSE_TUNING:
    524       1.18      chap 		ms->chnstate[chan].pendingreset &= ~PEND_TNC;
    525       1.18      chap 		if ( drvhandled )
    526       1.18      chap 			ms->chnstate[chan].tuning_coarse = 0;
    527       1.18      chap 		else {
    528       1.18      chap 			midipitch_t mp;
    529       1.18      chap 			/*
    530       1.18      chap 			 * By definition only the MSB of this parameter is used.
    531       1.18      chap 			 * Subtract 64 for a signed count of semitones; << 14
    532       1.18      chap 			 * will convert to midipitch scale.
    533       1.18      chap 			 */
    534       1.18      chap 			mp = midictl_rpn_read(&ms->ctl, chan, key, 64<<7) >> 7;
    535       1.18      chap 			ms->chnstate[chan].tuning_coarse = ( mp - 64 ) << 14;
    536       1.18      chap 			midisyn_upd_pitch(ms, chan);
    537       1.18      chap 		}
    538       1.18      chap 		break;
    539       1.18      chap 	}
    540       1.18      chap }
    541        1.1  augustss 
    542       1.18      chap static midipitch_t
    543       1.18      chap midisyn_clamp_pitch(midipitch_t mp)
    544       1.18      chap {
    545       1.18      chap 	if ( mp <= 0 )
    546       1.18      chap 		return 0;
    547       1.18      chap 	if ( mp >= MIDIPITCH_MAX )
    548       1.18      chap 		return MIDIPITCH_MAX;
    549       1.18      chap 	return mp;
    550       1.18      chap }
    551       1.18      chap 
    552       1.18      chap static int16_t
    553       1.18      chap midisyn_adj_level(midisyn *ms, uint_fast8_t chan)
    554       1.18      chap {
    555       1.18      chap 	int32_t level;
    556       1.18      chap 
    557       1.18      chap 	level = ms->chnstate[chan].volume + ms->chnstate[chan].expression;
    558       1.18      chap 	if ( level <= INT16_MIN )
    559       1.18      chap 		return INT16_MIN;
    560       1.18      chap 	return level;
    561       1.18      chap }
    562       1.18      chap 
    563       1.18      chap static midipitch_t
    564       1.18      chap midisyn_adj_pitch(midisyn *ms, uint_fast8_t chan)
    565       1.18      chap {
    566       1.18      chap 	struct channelstate *s = ms->chnstate + chan;
    567       1.18      chap 	return s->bend + s->tuning_fine +s->tuning_coarse;
    568       1.18      chap }
    569       1.18      chap 
    570       1.18      chap #define VOICECHAN_FOREACH_BEGIN(ms,vp,ch)			\
    571       1.18      chap 	{							\
    572       1.18      chap 		struct voice *vp, *_end_##vp;			\
    573       1.18      chap 		for (vp=(ms)->voices,_end_##vp=vp+(ms)->nvoice;	\
    574       1.18      chap 		    vp < _end_##vp; ++ vp) {			\
    575       1.18      chap 			if ( !vp->inuse )			\
    576       1.18      chap 				continue;			\
    577       1.18      chap 			if ( MS_GETCHAN(vp) == (ch) )		\
    578       1.18      chap 				;				\
    579       1.18      chap 			else					\
    580       1.18      chap 				continue;
    581       1.18      chap #define VOICECHAN_FOREACH_END }}
    582       1.18      chap 
    583       1.18      chap static void
    584       1.18      chap midisyn_chan_releasev(midisyn *ms, uint_fast8_t chan, uint_fast8_t vel)
    585       1.18      chap {
    586       1.18      chap 	VOICECHAN_FOREACH_BEGIN(ms,vp,chan)
    587       1.18      chap 		ms->mets->releasev(ms, vp - ms->voices, vel);
    588       1.18      chap 		midisyn_freevoice(ms, vp - ms->voices);
    589       1.18      chap 	VOICECHAN_FOREACH_END
    590       1.18      chap }
    591       1.18      chap 
    592       1.18      chap static void
    593       1.18      chap midisyn_upd_level(midisyn *ms, uint_fast8_t chan)
    594       1.18      chap {
    595       1.18      chap 	int32_t level;
    596       1.18      chap 	int16_t chan_level;
    597       1.18      chap 	if ( NULL == ms->mets->relevelv )
    598       1.18      chap 		return;
    599       1.18      chap 
    600       1.18      chap 	if ( ms->chnstate[chan].pendingreset & PEND_LEVEL )
    601       1.18      chap 		return;
    602        1.1  augustss 
    603       1.18      chap 	chan_level = midisyn_adj_level(ms, chan);
    604       1.18      chap 
    605       1.18      chap 	VOICECHAN_FOREACH_BEGIN(ms,vp,chan)
    606       1.18      chap 		level = vp->velcB + chan_level;
    607       1.18      chap 		ms->mets->relevelv(ms, vp - ms->voices,
    608       1.18      chap 		    level <= INT16_MIN ? INT16_MIN : level);
    609       1.18      chap 	VOICECHAN_FOREACH_END
    610       1.18      chap }
    611        1.1  augustss 
    612       1.18      chap static void
    613       1.18      chap midisyn_upd_pitch(midisyn *ms, uint_fast8_t chan)
    614       1.18      chap {
    615       1.18      chap 	midipitch_t chan_adj;
    616       1.18      chap 
    617       1.18      chap 	if ( NULL == ms->mets->repitchv )
    618       1.18      chap 		return;
    619       1.18      chap 
    620       1.18      chap 	if ( ms->chnstate[chan].pendingreset & PEND_PITCH )
    621       1.18      chap 		return;
    622        1.3  augustss 
    623       1.18      chap 	chan_adj = midisyn_adj_pitch(ms, chan);
    624       1.18      chap 
    625       1.18      chap 	VOICECHAN_FOREACH_BEGIN(ms,vp,chan)
    626       1.18      chap 		ms->mets->repitchv(ms, vp - ms->voices,
    627       1.18      chap 		    midisyn_clamp_pitch(chan_adj +
    628       1.18      chap 		        MIDIPITCH_FROM_KEY(vp->chan_note&0x7f)));
    629       1.18      chap 	VOICECHAN_FOREACH_END
    630       1.18      chap }
    631       1.18      chap 
    632       1.18      chap #undef VOICECHAN_FOREACH_END
    633       1.18      chap #undef VOICECHAN_FOREACH_BEGIN
    634       1.18      chap 
    635       1.18      chap int16_t
    636       1.18      chap midisyn_vol2cB(uint_fast16_t vol)
    637       1.18      chap {
    638       1.18      chap 	int16_t cB = 0;
    639       1.18      chap 	int32_t v;
    640       1.18      chap 
    641       1.18      chap 	if ( 0 == vol )
    642       1.18      chap 		return INT16_MIN;
    643       1.18      chap 	/*
    644       1.18      chap 	 * Adjust vol to fall in the range 8192..16383. Each doubling is
    645       1.18      chap 	 * worth 12 dB.
    646       1.18      chap 	 */
    647       1.18      chap 	while ( vol < 8192 ) {
    648       1.18      chap 		vol <<= 1;
    649       1.18      chap 		cB -= 120;
    650        1.3  augustss 	}
    651       1.18      chap 	v = vol; /* ensure evaluation in signed 32 bit below */
    652       1.18      chap 	/*
    653       1.18      chap 	 * The GM vol-to-dB formula is dB = 40 log ( v / 127 ) for 7-bit v.
    654       1.18      chap 	 * The vol and expression controllers are in 14-bit space so the
    655       1.18      chap 	 * equivalent is 40 log ( v / 16256 ) - that is, MSB 127 LSB 0 because
    656       1.18      chap 	 * the LSB is commonly unused. MSB 127 LSB 127 would then be a tiny
    657       1.18      chap 	 * bit over.
    658       1.18      chap 	 * 1 dB resolution is a little coarser than we'd like, so let's shoot
    659       1.18      chap 	 * for centibels, i.e. 400 log ( v / 16256 ), and shift everything left
    660       1.18      chap 	 * as far as will fit in 32 bits, which turns out to be a shift of 22.
    661       1.18      chap 	 * This minimax polynomial approximation is good to about a centibel
    662       1.18      chap 	 * on the range 8192..16256, a shade worse (1.4 or so) above that.
    663       1.18      chap 	 * 26385/10166 is the 6th convergent of the coefficient for v^2.
    664       1.18      chap 	 */
    665       1.18      chap 	cB += ( v * ( 124828 - ( v * 26385 ) / 10166 ) - 1347349038 ) >> 22;
    666       1.18      chap 	return cB;
    667       1.18      chap }
    668        1.3  augustss 
    669       1.18      chap /*
    670       1.18      chap  * MIDI RP-012 constitutes a MIDI Tuning Specification. The units are
    671       1.18      chap  * fractional-MIDIkeys, that is, the key number 00 - 7f left shifted
    672       1.18      chap  * 14 bits to provide a 14-bit fraction that divides each semitone. The
    673       1.18      chap  * whole thing is just a 21-bit number that is bent and tuned simply by
    674       1.18      chap  * adding and subtracting--the same offset is the same pitch change anywhere
    675       1.18      chap  * on the scale. One downside is that a cent is 163.84 of these units, so
    676       1.18      chap  * you can't expect a lengthy integer sum of cents to come out in tune; if you
    677       1.18      chap  * do anything in cents it is best to use them only for local adjustment of
    678       1.18      chap  * a pitch.
    679       1.18      chap  *
    680       1.18      chap  * This function converts a pitch in MIDItune units to Hz left-shifted 18 bits.
    681       1.18      chap  * That should leave you enough to shift down to whatever precision the hardware
    682       1.18      chap  * supports.
    683       1.18      chap  *
    684       1.18      chap  * Its prototype is exposed in <sys/midiio.h>.
    685       1.18      chap  */
    686       1.18      chap midihz18_t
    687       1.18      chap midisyn_mp2hz18(midipitch_t mp)
    688       1.18      chap {
    689       1.18      chap 	int64_t t64a, t64b;
    690       1.18      chap 	uint_fast8_t shift;
    691       1.18      chap 
    692       1.18      chap 	/*
    693       1.18      chap 	 * Scale from the logarithmic MIDI-Tuning units to Hz<<18. Uses the
    694       1.18      chap 	 * continued-fraction form of a 2/2 rational function derived to
    695       1.18      chap 	 * cover the highest octave (mt 1900544..2097151 or 74.00.00..7f.7f.7f
    696       1.18      chap 	 * in RP-012-speak, the dotted bits are 7 wide) to produce Hz shifted
    697       1.18      chap 	 * left just as far as the maximum Hz will fit in a uint32, which
    698       1.18      chap 	 * turns out to be 18. Just shift off the result for lower octaves.
    699       1.18      chap 	 * Fit is within 1/4 MIDI tuning unit throughout (disclaimer: the
    700       1.18      chap 	 * comparison relied on the double-precision log in libm).
    701       1.18      chap 	 */
    702       1.18      chap 
    703       1.18      chap 	if ( 0 == mp )
    704       1.18      chap 		return 2143236;
    705       1.18      chap 
    706       1.18      chap 	for ( shift = 0; mp < 1900544; ++ shift )
    707       1.18      chap 		mp += MIDIPITCH_OCTAVE;
    708       1.18      chap 
    709       1.18      chap 	if ( 1998848 == mp )
    710       1.18      chap 		return UINT32_C(2463438621) >> shift;
    711       1.18      chap 
    712       1.18      chap 	t64a  = 0x5a1a0ee4; /* INT64_C(967879298788) gcc333: spurious warning */
    713       1.18      chap 	t64a |= (int64_t)0xe1 << 32;
    714       1.18      chap 	t64a /= mp - 1998848; /* here's why 1998848 is special-cased above ;) */
    715       1.18      chap 	t64a += mp - 3704981;
    716       1.18      chap 	t64b  = 0x6763759d; /* INT64_C(8405905567872413) goofy warning again */
    717       1.18      chap 	t64b |= (int64_t)0x1ddd20 << 32;
    718       1.18      chap 	t64b /= t64a;
    719       1.18      chap 	t64b += UINT32_C(2463438619);
    720       1.18      chap 	return (uint32_t)t64b >> shift;
    721        1.1  augustss }
    722