sequencer.c revision 1.77 1 1.77 riastrad /* $NetBSD: sequencer.c,v 1.77 2022/04/16 11:12:21 riastradh Exp $ */
2 1.1 augustss
3 1.1 augustss /*
4 1.53 jmcneill * Copyright (c) 1998, 2008 The NetBSD Foundation, Inc.
5 1.1 augustss * All rights reserved.
6 1.1 augustss *
7 1.13 augustss * This code is derived from software contributed to The NetBSD Foundation
8 1.53 jmcneill * by Lennart Augustsson (augustss (at) NetBSD.org) and by Andrew Doran.
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.17 lukem
32 1.53 jmcneill /*
33 1.53 jmcneill * Locking:
34 1.53 jmcneill *
35 1.53 jmcneill * o sc_lock: provides atomic access to all data structures. Taken from
36 1.53 jmcneill * both process and soft interrupt context.
37 1.53 jmcneill *
38 1.53 jmcneill * o sc_dvlock: serializes operations on /dev/sequencer. Taken from
39 1.53 jmcneill * process context. Dropped while waiting for data in sequencerread()
40 1.53 jmcneill * to allow concurrent reads/writes while no data available.
41 1.53 jmcneill *
42 1.53 jmcneill * o sc_isopen: we allow only one concurrent open, only to prevent user
43 1.53 jmcneill * and/or application error.
44 1.53 jmcneill *
45 1.53 jmcneill * o MIDI softc locks. These can be spinlocks and there can be many of
46 1.53 jmcneill * them, because we can open many MIDI devices. We take these only in two
47 1.53 jmcneill * places: when enabling redirection from the MIDI device and when
48 1.53 jmcneill * disabling it (open/close). midiseq_in() is called by the MIDI driver
49 1.53 jmcneill * with its own lock held when passing data into this module. To avoid
50 1.53 jmcneill * lock order and context problems, we package the received message as a
51 1.53 jmcneill * sequencer_pcqitem_t and put onto a producer-consumer queue. A soft
52 1.53 jmcneill * interrupt is scheduled to dequeue and decode the message later where we
53 1.53 jmcneill * can safely acquire the sequencer device's sc_lock. PCQ is lockless for
54 1.53 jmcneill * multiple producer, single consumer settings like this one.
55 1.53 jmcneill */
56 1.53 jmcneill
57 1.17 lukem #include <sys/cdefs.h>
58 1.77 riastrad __KERNEL_RCSID(0, "$NetBSD: sequencer.c,v 1.77 2022/04/16 11:12:21 riastradh Exp $");
59 1.1 augustss
60 1.66 pgoyette #ifdef _KERNEL_OPT
61 1.1 augustss #include "sequencer.h"
62 1.66 pgoyette #include "midi.h"
63 1.66 pgoyette #endif
64 1.1 augustss
65 1.1 augustss #include <sys/param.h>
66 1.77 riastrad #include <sys/types.h>
67 1.77 riastrad
68 1.77 riastrad #include <sys/atomic.h>
69 1.77 riastrad #include <sys/audioio.h>
70 1.77 riastrad #include <sys/conf.h>
71 1.77 riastrad #include <sys/device.h>
72 1.77 riastrad #include <sys/fcntl.h>
73 1.77 riastrad #include <sys/intr.h>
74 1.1 augustss #include <sys/ioctl.h>
75 1.77 riastrad #include <sys/kauth.h>
76 1.77 riastrad #include <sys/kernel.h>
77 1.77 riastrad #include <sys/kmem.h>
78 1.77 riastrad #include <sys/midiio.h>
79 1.77 riastrad #include <sys/module.h>
80 1.77 riastrad #include <sys/pcq.h>
81 1.1 augustss #include <sys/poll.h>
82 1.1 augustss #include <sys/proc.h>
83 1.77 riastrad #include <sys/select.h>
84 1.77 riastrad #include <sys/signalvar.h>
85 1.77 riastrad #include <sys/syslog.h>
86 1.1 augustss #include <sys/systm.h>
87 1.53 jmcneill #include <sys/vnode.h>
88 1.77 riastrad #include <sys/vnode.h>
89 1.1 augustss
90 1.8 augustss #include <dev/midi_if.h>
91 1.1 augustss #include <dev/midivar.h>
92 1.1 augustss #include <dev/sequencervar.h>
93 1.1 augustss
94 1.64 christos #include "ioconf.h"
95 1.64 christos
96 1.69 riastrad /*
97 1.69 riastrad * XXX Kludge. This module uses midi_cd, and depends on the `midi'
98 1.69 riastrad * module, but there's no obvious way to get midi_cd declared in
99 1.69 riastrad * ioconf.h without actually pulling MIDI into the module in
100 1.69 riastrad * sys/modules/sequencer/sequencer.ioconf. Please fix me!
101 1.69 riastrad *
102 1.69 riastrad * XXX XXX XXX Apparently sequencer.ioconf doesn't actually make the
103 1.69 riastrad * sequencer cdev! Did this ever work?
104 1.70 riastrad *
105 1.70 riastrad * XXX XXX XXX Apparently there are even some kernels that include a
106 1.70 riastrad * sequencer pseudo-device but exclude any midi device. How do they
107 1.70 riastrad * even link??
108 1.69 riastrad */
109 1.70 riastrad extern struct cfdriver midi_cd;
110 1.69 riastrad #ifdef _MODULE
111 1.69 riastrad extern struct cfdriver sequencer_cd;
112 1.69 riastrad #endif
113 1.69 riastrad
114 1.1 augustss #define ADDTIMEVAL(a, b) ( \
115 1.1 augustss (a)->tv_sec += (b)->tv_sec, \
116 1.1 augustss (a)->tv_usec += (b)->tv_usec, \
117 1.1 augustss (a)->tv_usec > 1000000 ? ((a)->tv_sec++, (a)->tv_usec -= 1000000) : 0\
118 1.1 augustss )
119 1.1 augustss
120 1.1 augustss #define SUBTIMEVAL(a, b) ( \
121 1.1 augustss (a)->tv_sec -= (b)->tv_sec, \
122 1.1 augustss (a)->tv_usec -= (b)->tv_usec, \
123 1.1 augustss (a)->tv_usec < 0 ? ((a)->tv_sec--, (a)->tv_usec += 1000000) : 0\
124 1.1 augustss )
125 1.1 augustss
126 1.1 augustss #ifdef AUDIO_DEBUG
127 1.1 augustss #define DPRINTF(x) if (sequencerdebug) printf x
128 1.1 augustss #define DPRINTFN(n,x) if (sequencerdebug >= (n)) printf x
129 1.1 augustss int sequencerdebug = 0;
130 1.1 augustss #else
131 1.1 augustss #define DPRINTF(x)
132 1.1 augustss #define DPRINTFN(n,x)
133 1.1 augustss #endif
134 1.1 augustss
135 1.1 augustss #define SEQ_NOTE_MAX 128
136 1.1 augustss #define SEQ_NOTE_XXX 255
137 1.1 augustss
138 1.32 chap #define RECALC_USPERDIV(t) \
139 1.32 chap ((t)->usperdiv = 60*1000000L/((t)->tempo_beatpermin*(t)->timebase_divperbeat))
140 1.1 augustss
141 1.53 jmcneill typedef union sequencer_pcqitem {
142 1.53 jmcneill void *qi_ptr;
143 1.53 jmcneill char qi_msg[4];
144 1.53 jmcneill } sequencer_pcqitem_t;
145 1.53 jmcneill
146 1.32 chap static void seq_reset(struct sequencer_softc *);
147 1.32 chap static int seq_do_command(struct sequencer_softc *, seq_event_t *);
148 1.32 chap static int seq_do_chnvoice(struct sequencer_softc *, seq_event_t *);
149 1.32 chap static int seq_do_chncommon(struct sequencer_softc *, seq_event_t *);
150 1.32 chap static void seq_timer_waitabs(struct sequencer_softc *, uint32_t);
151 1.32 chap static int seq_do_timing(struct sequencer_softc *, seq_event_t *);
152 1.32 chap static int seq_do_local(struct sequencer_softc *, seq_event_t *);
153 1.32 chap static int seq_do_sysex(struct sequencer_softc *, seq_event_t *);
154 1.77 riastrad static int seq_do_fullsize(struct sequencer_softc *, seq_event_t *,
155 1.77 riastrad struct uio *);
156 1.32 chap static int seq_input_event(struct sequencer_softc *, seq_event_t *);
157 1.32 chap static int seq_drain(struct sequencer_softc *);
158 1.32 chap static void seq_startoutput(struct sequencer_softc *);
159 1.32 chap static void seq_timeout(void *);
160 1.32 chap static int seq_to_new(seq_event_t *, struct uio *);
161 1.39 ad static void seq_softintr(void *);
162 1.1 augustss
163 1.32 chap static int midiseq_out(struct midi_dev *, u_char *, u_int, int);
164 1.32 chap static struct midi_dev *midiseq_open(int, int);
165 1.32 chap static void midiseq_close(struct midi_dev *);
166 1.32 chap static void midiseq_reset(struct midi_dev *);
167 1.32 chap static int midiseq_noteon(struct midi_dev *, int, int, seq_event_t *);
168 1.32 chap static int midiseq_noteoff(struct midi_dev *, int, int, seq_event_t *);
169 1.32 chap static int midiseq_keypressure(struct midi_dev *, int, int, seq_event_t *);
170 1.32 chap static int midiseq_pgmchange(struct midi_dev *, int, seq_event_t *);
171 1.32 chap static int midiseq_chnpressure(struct midi_dev *, int, seq_event_t *);
172 1.32 chap static int midiseq_ctlchange(struct midi_dev *, int, seq_event_t *);
173 1.32 chap static int midiseq_pitchbend(struct midi_dev *, int, seq_event_t *);
174 1.77 riastrad static int midiseq_loadpatch(struct midi_dev *, struct sysex_info *,
175 1.77 riastrad struct uio *);
176 1.26 perry void midiseq_in(struct midi_dev *, u_char *, int);
177 1.1 augustss
178 1.32 chap static dev_type_open(sequenceropen);
179 1.32 chap static dev_type_close(sequencerclose);
180 1.32 chap static dev_type_read(sequencerread);
181 1.32 chap static dev_type_write(sequencerwrite);
182 1.32 chap static dev_type_ioctl(sequencerioctl);
183 1.32 chap static dev_type_poll(sequencerpoll);
184 1.32 chap static dev_type_kqfilter(sequencerkqfilter);
185 1.20 gehenna
186 1.20 gehenna const struct cdevsw sequencer_cdevsw = {
187 1.58 dholland .d_open = sequenceropen,
188 1.58 dholland .d_close = sequencerclose,
189 1.58 dholland .d_read = sequencerread,
190 1.58 dholland .d_write = sequencerwrite,
191 1.58 dholland .d_ioctl = sequencerioctl,
192 1.58 dholland .d_stop = nostop,
193 1.58 dholland .d_tty = notty,
194 1.58 dholland .d_poll = sequencerpoll,
195 1.58 dholland .d_mmap = nommap,
196 1.58 dholland .d_kqfilter = sequencerkqfilter,
197 1.59 dholland .d_discard = nodiscard,
198 1.58 dholland .d_flag = D_OTHER | D_MPSAFE
199 1.20 gehenna };
200 1.77 riastrad static LIST_HEAD(, sequencer_softc) sequencers =
201 1.77 riastrad LIST_HEAD_INITIALIZER(sequencers);
202 1.56 christos static kmutex_t sequencer_lock;
203 1.56 christos
204 1.56 christos static void
205 1.60 mrg sequencerdestroy(struct sequencer_softc *sc)
206 1.60 mrg {
207 1.77 riastrad
208 1.60 mrg callout_halt(&sc->sc_callout, &sc->lock);
209 1.56 christos callout_destroy(&sc->sc_callout);
210 1.56 christos softint_disestablish(sc->sih);
211 1.56 christos cv_destroy(&sc->rchan);
212 1.56 christos cv_destroy(&sc->wchan);
213 1.56 christos cv_destroy(&sc->lchan);
214 1.56 christos if (sc->pcq)
215 1.56 christos pcq_destroy(sc->pcq);
216 1.56 christos kmem_free(sc, sizeof(*sc));
217 1.56 christos }
218 1.56 christos
219 1.56 christos static struct sequencer_softc *
220 1.60 mrg sequencercreate(int unit)
221 1.60 mrg {
222 1.56 christos struct sequencer_softc *sc = kmem_zalloc(sizeof(*sc), KM_SLEEP);
223 1.77 riastrad
224 1.56 christos sc->sc_unit = unit;
225 1.56 christos callout_init(&sc->sc_callout, CALLOUT_MPSAFE);
226 1.56 christos sc->sih = softint_establish(SOFTINT_NET | SOFTINT_MPSAFE,
227 1.56 christos seq_softintr, sc);
228 1.56 christos mutex_init(&sc->lock, MUTEX_DEFAULT, IPL_NONE);
229 1.56 christos cv_init(&sc->rchan, "midiseqr");
230 1.56 christos cv_init(&sc->wchan, "midiseqw");
231 1.56 christos cv_init(&sc->lchan, "midiseql");
232 1.56 christos sc->pcq = pcq_create(SEQ_MAXQ, KM_SLEEP);
233 1.56 christos if (sc->pcq == NULL) {
234 1.56 christos sequencerdestroy(sc);
235 1.56 christos return NULL;
236 1.56 christos }
237 1.56 christos return sc;
238 1.56 christos }
239 1.56 christos
240 1.56 christos
241 1.56 christos static struct sequencer_softc *
242 1.60 mrg sequencerget(int unit)
243 1.60 mrg {
244 1.56 christos struct sequencer_softc *sc;
245 1.77 riastrad
246 1.56 christos if (unit < 0) {
247 1.56 christos #ifdef DIAGNOSTIC
248 1.56 christos panic("%s: unit %d!", __func__, unit);
249 1.56 christos #endif
250 1.56 christos return NULL;
251 1.56 christos }
252 1.77 riastrad
253 1.56 christos mutex_enter(&sequencer_lock);
254 1.56 christos LIST_FOREACH(sc, &sequencers, sc_link) {
255 1.56 christos if (sc->sc_unit == unit) {
256 1.56 christos mutex_exit(&sequencer_lock);
257 1.56 christos return sc;
258 1.56 christos }
259 1.56 christos }
260 1.56 christos mutex_exit(&sequencer_lock);
261 1.77 riastrad
262 1.77 riastrad /*
263 1.77 riastrad * XXXSMP -- nothing excludes another thread from creating the
264 1.77 riastrad * same unit here
265 1.77 riastrad */
266 1.56 christos if ((sc = sequencercreate(unit)) == NULL)
267 1.56 christos return NULL;
268 1.77 riastrad
269 1.56 christos mutex_enter(&sequencer_lock);
270 1.56 christos LIST_INSERT_HEAD(&sequencers, sc, sc_link);
271 1.56 christos mutex_exit(&sequencer_lock);
272 1.77 riastrad
273 1.56 christos return sc;
274 1.56 christos }
275 1.56 christos
276 1.56 christos #ifdef notyet
277 1.77 riastrad static void
278 1.60 mrg sequencerput(struct sequencer_softc *sc)
279 1.60 mrg {
280 1.77 riastrad
281 1.56 christos mutex_enter(&sequencer_lock);
282 1.56 christos LIST_REMOVE(sc, sc_link);
283 1.56 christos mutex_exit(&sequencer_lock);
284 1.56 christos sequencerdestroy(sc);
285 1.56 christos }
286 1.56 christos #endif
287 1.20 gehenna
288 1.1 augustss void
289 1.32 chap sequencerattach(int n)
290 1.1 augustss {
291 1.77 riastrad
292 1.56 christos mutex_init(&sequencer_lock, MUTEX_DEFAULT, IPL_NONE);
293 1.53 jmcneill }
294 1.53 jmcneill
295 1.53 jmcneill /*
296 1.53 jmcneill * Release reference to device acquired with sequencer_enter().
297 1.53 jmcneill */
298 1.53 jmcneill static void
299 1.53 jmcneill sequencer_exit(struct sequencer_softc *sc)
300 1.53 jmcneill {
301 1.53 jmcneill
302 1.53 jmcneill sc->dvlock--;
303 1.53 jmcneill cv_broadcast(&sc->lchan);
304 1.53 jmcneill mutex_exit(&sc->lock);
305 1.53 jmcneill }
306 1.53 jmcneill
307 1.53 jmcneill /*
308 1.53 jmcneill * Look up sequencer device and acquire locks for device access.
309 1.53 jmcneill */
310 1.53 jmcneill static int
311 1.53 jmcneill sequencer_enter(dev_t dev, struct sequencer_softc **scp)
312 1.53 jmcneill {
313 1.53 jmcneill struct sequencer_softc *sc;
314 1.53 jmcneill
315 1.53 jmcneill /* First, find the device and take sc_lock. */
316 1.56 christos if ((sc = sequencerget(SEQUENCERUNIT(dev))) == NULL)
317 1.53 jmcneill return ENXIO;
318 1.77 riastrad
319 1.53 jmcneill mutex_enter(&sc->lock);
320 1.53 jmcneill while (sc->dvlock) {
321 1.53 jmcneill cv_wait(&sc->lchan, &sc->lock);
322 1.53 jmcneill }
323 1.53 jmcneill sc->dvlock++;
324 1.53 jmcneill if (sc->dying) {
325 1.53 jmcneill sequencer_exit(sc);
326 1.53 jmcneill return EIO;
327 1.39 ad }
328 1.53 jmcneill *scp = sc;
329 1.53 jmcneill return 0;
330 1.1 augustss }
331 1.1 augustss
332 1.32 chap static int
333 1.37 christos sequenceropen(dev_t dev, int flags, int ifmt, struct lwp *l)
334 1.1 augustss {
335 1.1 augustss struct sequencer_softc *sc;
336 1.1 augustss struct midi_dev *md;
337 1.53 jmcneill struct midi_softc *msc;
338 1.62 mrg int error, unit, mdno;
339 1.1 augustss
340 1.1 augustss DPRINTF(("sequenceropen\n"));
341 1.1 augustss
342 1.53 jmcneill if ((error = sequencer_enter(dev, &sc)) != 0)
343 1.53 jmcneill return error;
344 1.53 jmcneill if (sc->isopen != 0) {
345 1.53 jmcneill sequencer_exit(sc);
346 1.1 augustss return EBUSY;
347 1.53 jmcneill }
348 1.53 jmcneill
349 1.56 christos if (SEQ_IS_OLD(SEQUENCERUNIT(dev)))
350 1.1 augustss sc->mode = SEQ_OLD;
351 1.1 augustss else
352 1.1 augustss sc->mode = SEQ_NEW;
353 1.1 augustss sc->isopen++;
354 1.1 augustss sc->flags = flags & (FREAD|FWRITE);
355 1.1 augustss sc->pbus = 0;
356 1.1 augustss sc->async = 0;
357 1.1 augustss sc->input_stamp = ~0;
358 1.1 augustss
359 1.1 augustss sc->nmidi = 0;
360 1.53 jmcneill sc->ndevs = midi_unit_count();
361 1.32 chap sc->timer.timebase_divperbeat = 100;
362 1.32 chap sc->timer.tempo_beatpermin = 60;
363 1.32 chap RECALC_USPERDIV(&sc->timer);
364 1.32 chap sc->timer.divs_lastevent = sc->timer.divs_lastchange = 0;
365 1.32 chap microtime(&sc->timer.reftime);
366 1.1 augustss
367 1.1 augustss SEQ_QINIT(&sc->inq);
368 1.1 augustss SEQ_QINIT(&sc->outq);
369 1.1 augustss sc->lowat = SEQ_MAXQ / 2;
370 1.1 augustss
371 1.53 jmcneill if (sc->ndevs > 0) {
372 1.53 jmcneill mutex_exit(&sc->lock);
373 1.53 jmcneill sc->devs = kmem_alloc(sc->ndevs * sizeof(struct midi_dev *),
374 1.53 jmcneill KM_SLEEP);
375 1.53 jmcneill for (unit = 0; unit < sc->ndevs; unit++) {
376 1.53 jmcneill md = midiseq_open(unit, flags);
377 1.53 jmcneill if (md) {
378 1.53 jmcneill sc->devs[sc->nmidi++] = md;
379 1.53 jmcneill md->seq = sc;
380 1.53 jmcneill md->doingsysex = 0;
381 1.62 mrg DPRINTF(("%s: midi unit %d opened as seq %p\n",
382 1.62 mrg __func__, unit, md));
383 1.63 mrg } else {
384 1.62 mrg DPRINTF(("%s: midi unit %d not opened as seq\n",
385 1.62 mrg __func__, unit));
386 1.63 mrg }
387 1.53 jmcneill }
388 1.53 jmcneill mutex_enter(&sc->lock);
389 1.53 jmcneill } else {
390 1.53 jmcneill sc->devs = NULL;
391 1.53 jmcneill }
392 1.53 jmcneill
393 1.53 jmcneill /* Only now redirect input from MIDI devices. */
394 1.62 mrg for (mdno = 0; mdno < sc->nmidi; mdno++) {
395 1.62 mrg msc = device_lookup_private(&midi_cd, sc->devs[mdno]->unit);
396 1.60 mrg if (msc) {
397 1.60 mrg mutex_enter(msc->lock);
398 1.60 mrg msc->seqopen = 1;
399 1.60 mrg mutex_exit(msc->lock);
400 1.60 mrg }
401 1.53 jmcneill }
402 1.53 jmcneill
403 1.5 augustss seq_reset(sc);
404 1.53 jmcneill sequencer_exit(sc);
405 1.5 augustss
406 1.53 jmcneill DPRINTF(("%s: mode=%d, nmidi=%d\n", __func__, sc->mode, sc->nmidi));
407 1.1 augustss return 0;
408 1.1 augustss }
409 1.1 augustss
410 1.1 augustss static int
411 1.32 chap seq_drain(struct sequencer_softc *sc)
412 1.1 augustss {
413 1.1 augustss int error;
414 1.1 augustss
415 1.53 jmcneill KASSERT(mutex_owned(&sc->lock));
416 1.53 jmcneill
417 1.1 augustss DPRINTFN(3, ("seq_drain: %p, len=%d\n", sc, SEQ_QLEN(&sc->outq)));
418 1.1 augustss seq_startoutput(sc);
419 1.1 augustss error = 0;
420 1.53 jmcneill while (!SEQ_QEMPTY(&sc->outq) && !error)
421 1.53 jmcneill error = cv_timedwait_sig(&sc->wchan, &sc->lock, 60*hz);
422 1.77 riastrad return error;
423 1.1 augustss }
424 1.1 augustss
425 1.32 chap static void
426 1.32 chap seq_timeout(void *addr)
427 1.1 augustss {
428 1.1 augustss struct sequencer_softc *sc = addr;
429 1.53 jmcneill proc_t *p;
430 1.53 jmcneill pid_t pid;
431 1.39 ad
432 1.1 augustss DPRINTFN(4, ("seq_timeout: %p\n", sc));
433 1.53 jmcneill
434 1.53 jmcneill mutex_enter(&sc->lock);
435 1.53 jmcneill if (sc->timeout == 0) {
436 1.75 riastrad mutex_exit(&sc->lock);
437 1.53 jmcneill return;
438 1.53 jmcneill }
439 1.1 augustss sc->timeout = 0;
440 1.1 augustss seq_startoutput(sc);
441 1.53 jmcneill if (SEQ_QLEN(&sc->outq) >= sc->lowat) {
442 1.53 jmcneill mutex_exit(&sc->lock);
443 1.53 jmcneill return;
444 1.53 jmcneill }
445 1.53 jmcneill cv_broadcast(&sc->wchan);
446 1.53 jmcneill selnotify(&sc->wsel, 0, NOTE_SUBMIT);
447 1.53 jmcneill if ((pid = sc->async) != 0) {
448 1.72 ad mutex_enter(&proc_lock);
449 1.53 jmcneill if ((p = proc_find(pid)) != NULL)
450 1.53 jmcneill psignal(p, SIGIO);
451 1.72 ad mutex_exit(&proc_lock);
452 1.1 augustss }
453 1.53 jmcneill mutex_exit(&sc->lock);
454 1.1 augustss }
455 1.1 augustss
456 1.32 chap static void
457 1.32 chap seq_startoutput(struct sequencer_softc *sc)
458 1.1 augustss {
459 1.1 augustss struct sequencer_queue *q = &sc->outq;
460 1.32 chap seq_event_t cmd;
461 1.1 augustss
462 1.53 jmcneill KASSERT(mutex_owned(&sc->lock));
463 1.53 jmcneill
464 1.1 augustss if (sc->timeout)
465 1.1 augustss return;
466 1.1 augustss DPRINTFN(4, ("seq_startoutput: %p, len=%d\n", sc, SEQ_QLEN(q)));
467 1.53 jmcneill while (!SEQ_QEMPTY(q) && !sc->timeout) {
468 1.1 augustss SEQ_QGET(q, cmd);
469 1.1 augustss seq_do_command(sc, &cmd);
470 1.1 augustss }
471 1.1 augustss }
472 1.1 augustss
473 1.32 chap static int
474 1.53 jmcneill sequencerclose(dev_t dev, int flags, int ifmt, struct lwp *l)
475 1.1 augustss {
476 1.53 jmcneill struct sequencer_softc *sc;
477 1.53 jmcneill struct midi_softc *msc;
478 1.53 jmcneill int unit, error;
479 1.1 augustss
480 1.61 mrg DPRINTF(("%s: %"PRIx64"\n", __func__, dev));
481 1.1 augustss
482 1.53 jmcneill if ((error = sequencer_enter(dev, &sc)) != 0)
483 1.53 jmcneill return error;
484 1.1 augustss seq_drain(sc);
485 1.7 augustss if (sc->timeout) {
486 1.53 jmcneill callout_halt(&sc->sc_callout, &sc->lock);
487 1.7 augustss sc->timeout = 0;
488 1.7 augustss }
489 1.53 jmcneill /* Bin input from MIDI devices. */
490 1.53 jmcneill for (unit = 0; unit < sc->nmidi; unit++) {
491 1.60 mrg msc = device_lookup_private(&midi_cd, unit);
492 1.60 mrg if (msc) {
493 1.60 mrg mutex_enter(msc->lock);
494 1.60 mrg msc->seqopen = 0;
495 1.60 mrg mutex_exit(msc->lock);
496 1.60 mrg }
497 1.53 jmcneill }
498 1.53 jmcneill mutex_exit(&sc->lock);
499 1.53 jmcneill
500 1.53 jmcneill for (unit = 0; unit < sc->nmidi; unit++)
501 1.53 jmcneill if (sc->devs[unit] != NULL)
502 1.53 jmcneill midiseq_close(sc->devs[unit]);
503 1.53 jmcneill if (sc->devs != NULL) {
504 1.53 jmcneill KASSERT(sc->ndevs > 0);
505 1.53 jmcneill kmem_free(sc->devs, sc->ndevs * sizeof(struct midi_dev *));
506 1.53 jmcneill sc->devs = NULL;
507 1.53 jmcneill }
508 1.1 augustss
509 1.53 jmcneill mutex_enter(&sc->lock);
510 1.1 augustss sc->isopen = 0;
511 1.53 jmcneill sequencer_exit(sc);
512 1.1 augustss
513 1.61 mrg DPRINTF(("%s: %"PRIx64" done\n", __func__, dev));
514 1.39 ad
515 1.77 riastrad return 0;
516 1.39 ad }
517 1.39 ad
518 1.12 augustss static int
519 1.32 chap seq_input_event(struct sequencer_softc *sc, seq_event_t *cmd)
520 1.1 augustss {
521 1.53 jmcneill struct sequencer_queue *q;
522 1.53 jmcneill
523 1.53 jmcneill KASSERT(mutex_owned(&sc->lock));
524 1.1 augustss
525 1.53 jmcneill DPRINTFN(2, ("seq_input_event: %02x %02x %02x %02x %02x "
526 1.53 jmcneill "%02x %02x %02x\n", cmd->tag,
527 1.53 jmcneill cmd->unknown.byte[0], cmd->unknown.byte[1],
528 1.53 jmcneill cmd->unknown.byte[2], cmd->unknown.byte[3],
529 1.53 jmcneill cmd->unknown.byte[4], cmd->unknown.byte[5],
530 1.53 jmcneill cmd->unknown.byte[6]));
531 1.53 jmcneill q = &sc->inq;
532 1.1 augustss if (SEQ_QFULL(q))
533 1.77 riastrad return ENOMEM;
534 1.1 augustss SEQ_QPUT(q, *cmd);
535 1.53 jmcneill cv_broadcast(&sc->rchan);
536 1.53 jmcneill selnotify(&sc->rsel, 0, NOTE_SUBMIT);
537 1.53 jmcneill if (sc->async != 0) {
538 1.53 jmcneill proc_t *p;
539 1.53 jmcneill
540 1.72 ad mutex_enter(&proc_lock);
541 1.53 jmcneill if ((p = proc_find(sc->async)) != NULL)
542 1.53 jmcneill psignal(p, SIGIO);
543 1.72 ad mutex_exit(&proc_lock);
544 1.53 jmcneill }
545 1.1 augustss return 0;
546 1.1 augustss }
547 1.1 augustss
548 1.53 jmcneill static void
549 1.53 jmcneill seq_softintr(void *addr)
550 1.1 augustss {
551 1.53 jmcneill struct sequencer_softc *sc;
552 1.53 jmcneill struct timeval now;
553 1.53 jmcneill seq_event_t ev;
554 1.53 jmcneill int status, chan, unit;
555 1.53 jmcneill sequencer_pcqitem_t qi;
556 1.1 augustss u_long t;
557 1.1 augustss
558 1.53 jmcneill sc = addr;
559 1.53 jmcneill
560 1.53 jmcneill mutex_enter(&sc->lock);
561 1.53 jmcneill
562 1.53 jmcneill qi.qi_ptr = pcq_get(sc->pcq);
563 1.53 jmcneill if (qi.qi_ptr == NULL) {
564 1.53 jmcneill mutex_exit(&sc->lock);
565 1.53 jmcneill return;
566 1.53 jmcneill }
567 1.53 jmcneill KASSERT((qi.qi_msg[3] & 0x80) != 0);
568 1.53 jmcneill unit = qi.qi_msg[3] & ~0x80;
569 1.53 jmcneill status = MIDI_GET_STATUS(qi.qi_msg[0]);
570 1.53 jmcneill chan = MIDI_GET_CHAN(qi.qi_msg[0]);
571 1.53 jmcneill switch (status) {
572 1.53 jmcneill case MIDI_NOTEON: /* midi(4) always canonicalizes hidden note-off */
573 1.53 jmcneill ev = SEQ_MK_CHN(NOTEON, .device=unit, .channel=chan,
574 1.53 jmcneill .key=qi.qi_msg[1], .velocity=qi.qi_msg[2]);
575 1.53 jmcneill break;
576 1.53 jmcneill case MIDI_NOTEOFF:
577 1.53 jmcneill ev = SEQ_MK_CHN(NOTEOFF, .device=unit, .channel=chan,
578 1.53 jmcneill .key=qi.qi_msg[1], .velocity=qi.qi_msg[2]);
579 1.53 jmcneill break;
580 1.53 jmcneill case MIDI_KEY_PRESSURE:
581 1.53 jmcneill ev = SEQ_MK_CHN(KEY_PRESSURE, .device=unit, .channel=chan,
582 1.53 jmcneill .key=qi.qi_msg[1], .pressure=qi.qi_msg[2]);
583 1.53 jmcneill break;
584 1.53 jmcneill case MIDI_CTL_CHANGE: /* XXX not correct for MSB */
585 1.53 jmcneill ev = SEQ_MK_CHN(CTL_CHANGE, .device=unit, .channel=chan,
586 1.53 jmcneill .controller=qi.qi_msg[1], .value=qi.qi_msg[2]);
587 1.53 jmcneill break;
588 1.53 jmcneill case MIDI_PGM_CHANGE:
589 1.53 jmcneill ev = SEQ_MK_CHN(PGM_CHANGE, .device=unit, .channel=chan,
590 1.53 jmcneill .program=qi.qi_msg[1]);
591 1.53 jmcneill break;
592 1.53 jmcneill case MIDI_CHN_PRESSURE:
593 1.53 jmcneill ev = SEQ_MK_CHN(CHN_PRESSURE, .device=unit, .channel=chan,
594 1.53 jmcneill .pressure=qi.qi_msg[1]);
595 1.53 jmcneill break;
596 1.53 jmcneill case MIDI_PITCH_BEND:
597 1.53 jmcneill ev = SEQ_MK_CHN(PITCH_BEND, .device=unit, .channel=chan,
598 1.53 jmcneill .value=(qi.qi_msg[1] & 0x7f) | ((qi.qi_msg[2] & 0x7f) << 7));
599 1.53 jmcneill break;
600 1.53 jmcneill default: /* this is now the point where MIDI_ACKs disappear */
601 1.53 jmcneill mutex_exit(&sc->lock);
602 1.53 jmcneill return;
603 1.53 jmcneill }
604 1.1 augustss microtime(&now);
605 1.32 chap if (!sc->timer.running)
606 1.32 chap now = sc->timer.stoptime;
607 1.32 chap SUBTIMEVAL(&now, &sc->timer.reftime);
608 1.1 augustss t = now.tv_sec * 1000000 + now.tv_usec;
609 1.32 chap t /= sc->timer.usperdiv;
610 1.32 chap t += sc->timer.divs_lastchange;
611 1.1 augustss if (t != sc->input_stamp) {
612 1.32 chap seq_input_event(sc, &SEQ_MK_TIMING(WAIT_ABS, .divisions=t));
613 1.62 mrg sc->input_stamp = t; /* XXX what happens if timer is reset? */
614 1.1 augustss }
615 1.53 jmcneill seq_input_event(sc, &ev);
616 1.53 jmcneill mutex_exit(&sc->lock);
617 1.1 augustss }
618 1.1 augustss
619 1.32 chap static int
620 1.32 chap sequencerread(dev_t dev, struct uio *uio, int ioflag)
621 1.1 augustss {
622 1.53 jmcneill struct sequencer_softc *sc;
623 1.53 jmcneill struct sequencer_queue *q;
624 1.32 chap seq_event_t ev;
625 1.53 jmcneill int error;
626 1.1 augustss
627 1.62 mrg DPRINTFN(2, ("sequencerread: %"PRIx64", count=%d, ioflag=%x\n",
628 1.53 jmcneill dev, (int)uio->uio_resid, ioflag));
629 1.53 jmcneill
630 1.53 jmcneill if ((error = sequencer_enter(dev, &sc)) != 0)
631 1.53 jmcneill return error;
632 1.53 jmcneill q = &sc->inq;
633 1.1 augustss
634 1.1 augustss if (sc->mode == SEQ_OLD) {
635 1.53 jmcneill sequencer_exit(sc);
636 1.5 augustss DPRINTFN(-1,("sequencerread: old read\n"));
637 1.53 jmcneill return EINVAL; /* XXX unimplemented */
638 1.1 augustss }
639 1.1 augustss while (SEQ_QEMPTY(q)) {
640 1.53 jmcneill if (ioflag & IO_NDELAY) {
641 1.53 jmcneill error = EWOULDBLOCK;
642 1.53 jmcneill break;
643 1.53 jmcneill }
644 1.53 jmcneill /* Drop lock to allow concurrent read/write. */
645 1.53 jmcneill KASSERT(sc->dvlock != 0);
646 1.53 jmcneill sc->dvlock--;
647 1.53 jmcneill error = cv_wait_sig(&sc->rchan, &sc->lock);
648 1.53 jmcneill while (sc->dvlock != 0) {
649 1.53 jmcneill cv_wait(&sc->lchan, &sc->lock);
650 1.53 jmcneill }
651 1.53 jmcneill sc->dvlock++;
652 1.53 jmcneill if (error) {
653 1.53 jmcneill break;
654 1.1 augustss }
655 1.1 augustss }
656 1.53 jmcneill while (uio->uio_resid >= sizeof(ev) && !error && !SEQ_QEMPTY(q)) {
657 1.1 augustss SEQ_QGET(q, ev);
658 1.53 jmcneill mutex_exit(&sc->lock);
659 1.53 jmcneill error = uiomove(&ev, sizeof(ev), uio);
660 1.53 jmcneill mutex_enter(&sc->lock);
661 1.1 augustss }
662 1.53 jmcneill sequencer_exit(sc);
663 1.1 augustss return error;
664 1.1 augustss }
665 1.1 augustss
666 1.32 chap static int
667 1.32 chap sequencerwrite(dev_t dev, struct uio *uio, int ioflag)
668 1.1 augustss {
669 1.53 jmcneill struct sequencer_softc *sc;
670 1.53 jmcneill struct sequencer_queue *q;
671 1.1 augustss int error;
672 1.32 chap seq_event_t cmdbuf;
673 1.1 augustss int size;
674 1.77 riastrad
675 1.53 jmcneill DPRINTFN(2, ("sequencerwrite: %"PRIx64", count=%d\n", dev,
676 1.53 jmcneill (int)uio->uio_resid));
677 1.53 jmcneill
678 1.53 jmcneill if ((error = sequencer_enter(dev, &sc)) != 0)
679 1.53 jmcneill return error;
680 1.53 jmcneill q = &sc->outq;
681 1.1 augustss
682 1.1 augustss size = sc->mode == SEQ_NEW ? sizeof cmdbuf : SEQOLD_CMDSIZE;
683 1.53 jmcneill while (uio->uio_resid >= size && error == 0) {
684 1.53 jmcneill mutex_exit(&sc->lock);
685 1.1 augustss error = uiomove(&cmdbuf, size, uio);
686 1.53 jmcneill if (error == 0) {
687 1.53 jmcneill if (sc->mode == SEQ_OLD && seq_to_new(&cmdbuf, uio)) {
688 1.53 jmcneill mutex_enter(&sc->lock);
689 1.53 jmcneill continue;
690 1.53 jmcneill }
691 1.53 jmcneill if (cmdbuf.tag == SEQ_FULLSIZE) {
692 1.53 jmcneill /* We do it like OSS does, asynchronously */
693 1.53 jmcneill error = seq_do_fullsize(sc, &cmdbuf, uio);
694 1.53 jmcneill if (error == 0) {
695 1.53 jmcneill mutex_enter(&sc->lock);
696 1.53 jmcneill continue;
697 1.53 jmcneill }
698 1.53 jmcneill }
699 1.53 jmcneill }
700 1.53 jmcneill mutex_enter(&sc->lock);
701 1.53 jmcneill if (error != 0) {
702 1.1 augustss break;
703 1.1 augustss }
704 1.1 augustss while (SEQ_QFULL(q)) {
705 1.1 augustss seq_startoutput(sc);
706 1.1 augustss if (SEQ_QFULL(q)) {
707 1.53 jmcneill if (ioflag & IO_NDELAY) {
708 1.53 jmcneill error = EWOULDBLOCK;
709 1.53 jmcneill break;
710 1.53 jmcneill }
711 1.53 jmcneill error = cv_wait_sig(&sc->wchan, &sc->lock);
712 1.53 jmcneill if (error) {
713 1.53 jmcneill break;
714 1.53 jmcneill }
715 1.1 augustss }
716 1.1 augustss }
717 1.53 jmcneill if (error == 0) {
718 1.53 jmcneill SEQ_QPUT(q, cmdbuf);
719 1.53 jmcneill }
720 1.1 augustss }
721 1.53 jmcneill if (error == 0) {
722 1.53 jmcneill seq_startoutput(sc);
723 1.53 jmcneill } else {
724 1.1 augustss DPRINTFN(2, ("sequencerwrite: error=%d\n", error));
725 1.53 jmcneill }
726 1.53 jmcneill sequencer_exit(sc);
727 1.1 augustss return error;
728 1.1 augustss }
729 1.1 augustss
730 1.32 chap static int
731 1.53 jmcneill sequencerioctl(dev_t dev, u_long cmd, void *addr, int flag, struct lwp *l)
732 1.1 augustss {
733 1.53 jmcneill struct sequencer_softc *sc;
734 1.1 augustss struct synth_info *si;
735 1.2 augustss struct midi_dev *md;
736 1.53 jmcneill int devno, error, t;
737 1.53 jmcneill struct timeval now;
738 1.53 jmcneill u_long tx;
739 1.1 augustss
740 1.53 jmcneill DPRINTFN(2, ("sequencerioctl: %"PRIx64" cmd=0x%08lx\n", dev, cmd));
741 1.1 augustss
742 1.53 jmcneill if ((error = sequencer_enter(dev, &sc)) != 0)
743 1.53 jmcneill return error;
744 1.1 augustss switch (cmd) {
745 1.1 augustss case FIONBIO:
746 1.1 augustss /* All handled in the upper FS layer. */
747 1.1 augustss break;
748 1.1 augustss
749 1.1 augustss case FIOASYNC:
750 1.1 augustss if (*(int *)addr) {
751 1.53 jmcneill if (sc->async != 0)
752 1.1 augustss return EBUSY;
753 1.53 jmcneill sc->async = curproc->p_pid;
754 1.61 mrg DPRINTF(("%s: FIOASYNC %d\n", __func__,
755 1.53 jmcneill sc->async));
756 1.53 jmcneill } else {
757 1.1 augustss sc->async = 0;
758 1.53 jmcneill }
759 1.1 augustss break;
760 1.1 augustss
761 1.1 augustss case SEQUENCER_RESET:
762 1.1 augustss seq_reset(sc);
763 1.1 augustss break;
764 1.1 augustss
765 1.1 augustss case SEQUENCER_PANIC:
766 1.1 augustss seq_reset(sc);
767 1.1 augustss /* Do more? OSS doesn't */
768 1.1 augustss break;
769 1.1 augustss
770 1.1 augustss case SEQUENCER_SYNC:
771 1.53 jmcneill if (sc->flags != FREAD)
772 1.53 jmcneill seq_drain(sc);
773 1.1 augustss break;
774 1.1 augustss
775 1.1 augustss case SEQUENCER_INFO:
776 1.1 augustss si = (struct synth_info*)addr;
777 1.1 augustss devno = si->device;
778 1.53 jmcneill if (devno < 0 || devno >= sc->nmidi) {
779 1.53 jmcneill error = EINVAL;
780 1.53 jmcneill break;
781 1.53 jmcneill }
782 1.2 augustss md = sc->devs[devno];
783 1.2 augustss strncpy(si->name, md->name, sizeof si->name);
784 1.1 augustss si->synth_type = SYNTH_TYPE_MIDI;
785 1.2 augustss si->synth_subtype = md->subtype;
786 1.2 augustss si->nr_voices = md->nr_voices;
787 1.2 augustss si->instr_bank_size = md->instr_bank_size;
788 1.2 augustss si->capabilities = md->capabilities;
789 1.1 augustss break;
790 1.1 augustss
791 1.1 augustss case SEQUENCER_NRSYNTHS:
792 1.3 augustss *(int *)addr = sc->nmidi;
793 1.1 augustss break;
794 1.1 augustss
795 1.1 augustss case SEQUENCER_NRMIDIS:
796 1.1 augustss *(int *)addr = sc->nmidi;
797 1.1 augustss break;
798 1.1 augustss
799 1.1 augustss case SEQUENCER_OUTOFBAND:
800 1.27 perry DPRINTFN(3, ("sequencer_ioctl: OOB=%02x %02x %02x %02x %02x %02x %02x %02x\n",
801 1.53 jmcneill *(u_char *)addr, *((u_char *)addr+1),
802 1.53 jmcneill *((u_char *)addr+2), *((u_char *)addr+3),
803 1.53 jmcneill *((u_char *)addr+4), *((u_char *)addr+5),
804 1.53 jmcneill *((u_char *)addr+6), *((u_char *)addr+7)));
805 1.53 jmcneill if ((sc->flags & FWRITE) == 0) {
806 1.53 jmcneill error = EBADF;
807 1.53 jmcneill } else {
808 1.53 jmcneill error = seq_do_command(sc, (seq_event_t *)addr);
809 1.53 jmcneill }
810 1.1 augustss break;
811 1.1 augustss
812 1.1 augustss case SEQUENCER_TMR_TIMEBASE:
813 1.1 augustss t = *(int *)addr;
814 1.1 augustss if (t < 1)
815 1.1 augustss t = 1;
816 1.14 augustss if (t > 10000)
817 1.14 augustss t = 10000;
818 1.1 augustss *(int *)addr = t;
819 1.32 chap sc->timer.timebase_divperbeat = t;
820 1.32 chap sc->timer.divs_lastchange = sc->timer.divs_lastevent;
821 1.32 chap microtime(&sc->timer.reftime);
822 1.32 chap RECALC_USPERDIV(&sc->timer);
823 1.1 augustss break;
824 1.1 augustss
825 1.1 augustss case SEQUENCER_TMR_START:
826 1.32 chap error = seq_do_timing(sc, &SEQ_MK_TIMING(START));
827 1.1 augustss break;
828 1.1 augustss
829 1.1 augustss case SEQUENCER_TMR_STOP:
830 1.32 chap error = seq_do_timing(sc, &SEQ_MK_TIMING(STOP));
831 1.1 augustss break;
832 1.1 augustss
833 1.1 augustss case SEQUENCER_TMR_CONTINUE:
834 1.32 chap error = seq_do_timing(sc, &SEQ_MK_TIMING(CONTINUE));
835 1.1 augustss break;
836 1.1 augustss
837 1.1 augustss case SEQUENCER_TMR_TEMPO:
838 1.32 chap error = seq_do_timing(sc,
839 1.32 chap &SEQ_MK_TIMING(TEMPO, .bpm=*(int *)addr));
840 1.62 mrg RECALC_USPERDIV(&sc->timer);
841 1.53 jmcneill if (error == 0)
842 1.53 jmcneill *(int *)addr = sc->timer.tempo_beatpermin;
843 1.1 augustss break;
844 1.1 augustss
845 1.1 augustss case SEQUENCER_TMR_SOURCE:
846 1.1 augustss *(int *)addr = SEQUENCER_TMR_INTERNAL;
847 1.1 augustss break;
848 1.1 augustss
849 1.1 augustss case SEQUENCER_TMR_METRONOME:
850 1.1 augustss /* noop */
851 1.1 augustss break;
852 1.1 augustss
853 1.1 augustss case SEQUENCER_THRESHOLD:
854 1.1 augustss t = SEQ_MAXQ - *(int *)addr / sizeof (seq_event_rec);
855 1.1 augustss if (t < 1)
856 1.1 augustss t = 1;
857 1.1 augustss if (t > SEQ_MAXQ)
858 1.1 augustss t = SEQ_MAXQ;
859 1.1 augustss sc->lowat = t;
860 1.1 augustss break;
861 1.1 augustss
862 1.1 augustss case SEQUENCER_CTRLRATE:
863 1.32 chap *(int *)addr = (sc->timer.tempo_beatpermin
864 1.53 jmcneill *sc->timer.timebase_divperbeat + 30) / 60;
865 1.1 augustss break;
866 1.1 augustss
867 1.1 augustss case SEQUENCER_GETTIME:
868 1.1 augustss microtime(&now);
869 1.32 chap SUBTIMEVAL(&now, &sc->timer.reftime);
870 1.28 christos tx = now.tv_sec * 1000000 + now.tv_usec;
871 1.32 chap tx /= sc->timer.usperdiv;
872 1.32 chap tx += sc->timer.divs_lastchange;
873 1.28 christos *(int *)addr = tx;
874 1.1 augustss break;
875 1.1 augustss
876 1.1 augustss default:
877 1.5 augustss DPRINTFN(-1,("sequencer_ioctl: unimpl %08lx\n", cmd));
878 1.1 augustss error = EINVAL;
879 1.1 augustss break;
880 1.1 augustss }
881 1.53 jmcneill sequencer_exit(sc);
882 1.53 jmcneill
883 1.1 augustss return error;
884 1.1 augustss }
885 1.1 augustss
886 1.32 chap static int
887 1.32 chap sequencerpoll(dev_t dev, int events, struct lwp *l)
888 1.1 augustss {
889 1.56 christos struct sequencer_softc *sc;
890 1.1 augustss int revents = 0;
891 1.77 riastrad
892 1.56 christos if ((sc = sequencerget(SEQUENCERUNIT(dev))) == NULL)
893 1.56 christos return ENXIO;
894 1.1 augustss
895 1.61 mrg DPRINTF(("%s: %p events=0x%x\n", __func__, sc, events));
896 1.1 augustss
897 1.53 jmcneill mutex_enter(&sc->lock);
898 1.1 augustss if (events & (POLLIN | POLLRDNORM))
899 1.32 chap if ((sc->flags&FREAD) && !SEQ_QEMPTY(&sc->inq))
900 1.1 augustss revents |= events & (POLLIN | POLLRDNORM);
901 1.1 augustss
902 1.1 augustss if (events & (POLLOUT | POLLWRNORM))
903 1.32 chap if ((sc->flags&FWRITE) && SEQ_QLEN(&sc->outq) < sc->lowat)
904 1.1 augustss revents |= events & (POLLOUT | POLLWRNORM);
905 1.1 augustss
906 1.1 augustss if (revents == 0) {
907 1.32 chap if ((sc->flags&FREAD) && (events & (POLLIN | POLLRDNORM)))
908 1.30 christos selrecord(l, &sc->rsel);
909 1.1 augustss
910 1.32 chap if ((sc->flags&FWRITE) && (events & (POLLOUT | POLLWRNORM)))
911 1.30 christos selrecord(l, &sc->wsel);
912 1.1 augustss }
913 1.53 jmcneill mutex_exit(&sc->lock);
914 1.1 augustss
915 1.1 augustss return revents;
916 1.21 jdolecek }
917 1.21 jdolecek
918 1.21 jdolecek static void
919 1.21 jdolecek filt_sequencerrdetach(struct knote *kn)
920 1.21 jdolecek {
921 1.21 jdolecek struct sequencer_softc *sc = kn->kn_hook;
922 1.21 jdolecek
923 1.53 jmcneill mutex_enter(&sc->lock);
924 1.73 thorpej selremove_knote(&sc->rsel, kn);
925 1.53 jmcneill mutex_exit(&sc->lock);
926 1.21 jdolecek }
927 1.21 jdolecek
928 1.21 jdolecek static int
929 1.37 christos filt_sequencerread(struct knote *kn, long hint)
930 1.21 jdolecek {
931 1.21 jdolecek struct sequencer_softc *sc = kn->kn_hook;
932 1.53 jmcneill int rv;
933 1.21 jdolecek
934 1.53 jmcneill if (hint != NOTE_SUBMIT) {
935 1.53 jmcneill mutex_enter(&sc->lock);
936 1.53 jmcneill }
937 1.53 jmcneill if (SEQ_QEMPTY(&sc->inq)) {
938 1.53 jmcneill rv = 0;
939 1.53 jmcneill } else {
940 1.53 jmcneill kn->kn_data = sizeof(seq_event_rec);
941 1.53 jmcneill rv = 1;
942 1.53 jmcneill }
943 1.53 jmcneill if (hint != NOTE_SUBMIT) {
944 1.53 jmcneill mutex_exit(&sc->lock);
945 1.53 jmcneill }
946 1.53 jmcneill return rv;
947 1.21 jdolecek }
948 1.21 jdolecek
949 1.67 maya static const struct filterops sequencerread_filtops = {
950 1.74 thorpej .f_flags = FILTEROP_ISFD,
951 1.67 maya .f_attach = NULL,
952 1.67 maya .f_detach = filt_sequencerrdetach,
953 1.67 maya .f_event = filt_sequencerread,
954 1.67 maya };
955 1.21 jdolecek
956 1.21 jdolecek static void
957 1.21 jdolecek filt_sequencerwdetach(struct knote *kn)
958 1.21 jdolecek {
959 1.21 jdolecek struct sequencer_softc *sc = kn->kn_hook;
960 1.21 jdolecek
961 1.53 jmcneill mutex_enter(&sc->lock);
962 1.73 thorpej selremove_knote(&sc->wsel, kn);
963 1.53 jmcneill mutex_exit(&sc->lock);
964 1.21 jdolecek }
965 1.21 jdolecek
966 1.21 jdolecek static int
967 1.37 christos filt_sequencerwrite(struct knote *kn, long hint)
968 1.21 jdolecek {
969 1.21 jdolecek struct sequencer_softc *sc = kn->kn_hook;
970 1.53 jmcneill int rv;
971 1.21 jdolecek
972 1.53 jmcneill if (hint != NOTE_SUBMIT) {
973 1.53 jmcneill mutex_enter(&sc->lock);
974 1.53 jmcneill }
975 1.53 jmcneill if (SEQ_QLEN(&sc->outq) >= sc->lowat) {
976 1.53 jmcneill rv = 0;
977 1.53 jmcneill } else {
978 1.53 jmcneill kn->kn_data = sizeof(seq_event_rec);
979 1.53 jmcneill rv = 1;
980 1.53 jmcneill }
981 1.53 jmcneill if (hint != NOTE_SUBMIT) {
982 1.53 jmcneill mutex_exit(&sc->lock);
983 1.53 jmcneill }
984 1.53 jmcneill return rv;
985 1.21 jdolecek }
986 1.21 jdolecek
987 1.67 maya static const struct filterops sequencerwrite_filtops = {
988 1.74 thorpej .f_flags = FILTEROP_ISFD,
989 1.67 maya .f_attach = NULL,
990 1.67 maya .f_detach = filt_sequencerwdetach,
991 1.67 maya .f_event = filt_sequencerwrite,
992 1.67 maya };
993 1.21 jdolecek
994 1.32 chap static int
995 1.21 jdolecek sequencerkqfilter(dev_t dev, struct knote *kn)
996 1.21 jdolecek {
997 1.56 christos struct sequencer_softc *sc;
998 1.73 thorpej struct selinfo *sip;
999 1.77 riastrad
1000 1.56 christos if ((sc = sequencerget(SEQUENCERUNIT(dev))) == NULL)
1001 1.56 christos return ENXIO;
1002 1.21 jdolecek
1003 1.21 jdolecek switch (kn->kn_filter) {
1004 1.21 jdolecek case EVFILT_READ:
1005 1.73 thorpej sip = &sc->rsel;
1006 1.21 jdolecek kn->kn_fop = &sequencerread_filtops;
1007 1.21 jdolecek break;
1008 1.21 jdolecek
1009 1.21 jdolecek case EVFILT_WRITE:
1010 1.73 thorpej sip = &sc->wsel;
1011 1.21 jdolecek kn->kn_fop = &sequencerwrite_filtops;
1012 1.21 jdolecek break;
1013 1.21 jdolecek
1014 1.21 jdolecek default:
1015 1.77 riastrad return EINVAL;
1016 1.21 jdolecek }
1017 1.21 jdolecek
1018 1.21 jdolecek kn->kn_hook = sc;
1019 1.21 jdolecek
1020 1.53 jmcneill mutex_enter(&sc->lock);
1021 1.73 thorpej selrecord_knote(sip, kn);
1022 1.53 jmcneill mutex_exit(&sc->lock);
1023 1.21 jdolecek
1024 1.77 riastrad return 0;
1025 1.1 augustss }
1026 1.1 augustss
1027 1.32 chap static void
1028 1.32 chap seq_reset(struct sequencer_softc *sc)
1029 1.1 augustss {
1030 1.1 augustss int i, chn;
1031 1.1 augustss struct midi_dev *md;
1032 1.1 augustss
1033 1.53 jmcneill KASSERT(mutex_owned(&sc->lock));
1034 1.53 jmcneill
1035 1.60 mrg if (!(sc->flags & FWRITE))
1036 1.32 chap return;
1037 1.1 augustss for (i = 0; i < sc->nmidi; i++) {
1038 1.1 augustss md = sc->devs[i];
1039 1.3 augustss midiseq_reset(md);
1040 1.1 augustss for (chn = 0; chn < MAXCHAN; chn++) {
1041 1.32 chap midiseq_ctlchange(md, chn, &SEQ_MK_CHN(CTL_CHANGE,
1042 1.32 chap .controller=MIDI_CTRL_NOTES_OFF));
1043 1.32 chap midiseq_ctlchange(md, chn, &SEQ_MK_CHN(CTL_CHANGE,
1044 1.32 chap .controller=MIDI_CTRL_RESET));
1045 1.32 chap midiseq_pitchbend(md, chn, &SEQ_MK_CHN(PITCH_BEND,
1046 1.32 chap .value=MIDI_BEND_NEUTRAL));
1047 1.1 augustss }
1048 1.1 augustss }
1049 1.1 augustss }
1050 1.1 augustss
1051 1.32 chap static int
1052 1.32 chap seq_do_command(struct sequencer_softc *sc, seq_event_t *b)
1053 1.1 augustss {
1054 1.1 augustss int dev;
1055 1.1 augustss
1056 1.53 jmcneill KASSERT(mutex_owned(&sc->lock));
1057 1.53 jmcneill
1058 1.33 christos DPRINTFN(4, ("seq_do_command: %p cmd=0x%02x\n", sc, b->timing.op));
1059 1.1 augustss
1060 1.32 chap switch(b->tag) {
1061 1.1 augustss case SEQ_LOCAL:
1062 1.1 augustss return seq_do_local(sc, b);
1063 1.1 augustss case SEQ_TIMING:
1064 1.1 augustss return seq_do_timing(sc, b);
1065 1.1 augustss case SEQ_CHN_VOICE:
1066 1.1 augustss return seq_do_chnvoice(sc, b);
1067 1.1 augustss case SEQ_CHN_COMMON:
1068 1.1 augustss return seq_do_chncommon(sc, b);
1069 1.4 augustss case SEQ_SYSEX:
1070 1.4 augustss return seq_do_sysex(sc, b);
1071 1.1 augustss /* COMPAT */
1072 1.1 augustss case SEQOLD_MIDIPUTC:
1073 1.32 chap dev = b->putc.device;
1074 1.1 augustss if (dev < 0 || dev >= sc->nmidi)
1075 1.77 riastrad return ENXIO;
1076 1.32 chap return midiseq_out(sc->devs[dev], &b->putc.byte, 1, 0);
1077 1.1 augustss default:
1078 1.32 chap DPRINTFN(-1,("seq_do_command: unimpl command %02x\n", b->tag));
1079 1.77 riastrad return EINVAL;
1080 1.1 augustss }
1081 1.1 augustss }
1082 1.1 augustss
1083 1.32 chap static int
1084 1.32 chap seq_do_chnvoice(struct sequencer_softc *sc, seq_event_t *b)
1085 1.1 augustss {
1086 1.32 chap int dev;
1087 1.1 augustss int error;
1088 1.1 augustss struct midi_dev *md;
1089 1.1 augustss
1090 1.53 jmcneill KASSERT(mutex_owned(&sc->lock));
1091 1.53 jmcneill
1092 1.32 chap dev = b->voice.device;
1093 1.32 chap if (dev < 0 || dev >= sc->nmidi ||
1094 1.32 chap b->voice.channel > 15 ||
1095 1.32 chap b->voice.key >= SEQ_NOTE_MAX)
1096 1.1 augustss return ENXIO;
1097 1.1 augustss md = sc->devs[dev];
1098 1.32 chap switch(b->voice.op) {
1099 1.32 chap case MIDI_NOTEON: /* no need to special-case hidden noteoff here */
1100 1.32 chap error = midiseq_noteon(md, b->voice.channel, b->voice.key, b);
1101 1.1 augustss break;
1102 1.1 augustss case MIDI_NOTEOFF:
1103 1.32 chap error = midiseq_noteoff(md, b->voice.channel, b->voice.key, b);
1104 1.1 augustss break;
1105 1.1 augustss case MIDI_KEY_PRESSURE:
1106 1.32 chap error = midiseq_keypressure(md,
1107 1.32 chap b->voice.channel, b->voice.key, b);
1108 1.1 augustss break;
1109 1.1 augustss default:
1110 1.32 chap DPRINTFN(-1,("seq_do_chnvoice: unimpl command %02x\n",
1111 1.32 chap b->voice.op));
1112 1.1 augustss error = EINVAL;
1113 1.1 augustss break;
1114 1.1 augustss }
1115 1.1 augustss return error;
1116 1.1 augustss }
1117 1.1 augustss
1118 1.32 chap static int
1119 1.32 chap seq_do_chncommon(struct sequencer_softc *sc, seq_event_t *b)
1120 1.1 augustss {
1121 1.32 chap int dev;
1122 1.1 augustss int error;
1123 1.1 augustss struct midi_dev *md;
1124 1.1 augustss
1125 1.53 jmcneill KASSERT(mutex_owned(&sc->lock));
1126 1.53 jmcneill
1127 1.32 chap dev = b->common.device;
1128 1.32 chap if (dev < 0 || dev >= sc->nmidi ||
1129 1.32 chap b->common.channel > 15)
1130 1.1 augustss return ENXIO;
1131 1.1 augustss md = sc->devs[dev];
1132 1.32 chap DPRINTFN(2,("seq_do_chncommon: %02x\n", b->common.op));
1133 1.1 augustss
1134 1.1 augustss error = 0;
1135 1.32 chap switch(b->common.op) {
1136 1.1 augustss case MIDI_PGM_CHANGE:
1137 1.32 chap error = midiseq_pgmchange(md, b->common.channel, b);
1138 1.1 augustss break;
1139 1.1 augustss case MIDI_CTL_CHANGE:
1140 1.32 chap error = midiseq_ctlchange(md, b->common.channel, b);
1141 1.1 augustss break;
1142 1.1 augustss case MIDI_PITCH_BEND:
1143 1.32 chap error = midiseq_pitchbend(md, b->common.channel, b);
1144 1.1 augustss break;
1145 1.8 augustss case MIDI_CHN_PRESSURE:
1146 1.32 chap error = midiseq_chnpressure(md, b->common.channel, b);
1147 1.8 augustss break;
1148 1.1 augustss default:
1149 1.32 chap DPRINTFN(-1,("seq_do_chncommon: unimpl command %02x\n",
1150 1.32 chap b->common.op));
1151 1.1 augustss error = EINVAL;
1152 1.1 augustss break;
1153 1.1 augustss }
1154 1.32 chap return error;
1155 1.1 augustss }
1156 1.1 augustss
1157 1.32 chap static int
1158 1.37 christos seq_do_local(struct sequencer_softc *sc, seq_event_t *b)
1159 1.1 augustss {
1160 1.53 jmcneill
1161 1.53 jmcneill KASSERT(mutex_owned(&sc->lock));
1162 1.53 jmcneill
1163 1.77 riastrad return EINVAL;
1164 1.4 augustss }
1165 1.4 augustss
1166 1.32 chap static int
1167 1.32 chap seq_do_sysex(struct sequencer_softc *sc, seq_event_t *b)
1168 1.4 augustss {
1169 1.4 augustss int dev, i;
1170 1.4 augustss struct midi_dev *md;
1171 1.32 chap uint8_t *bf = b->sysex.buffer;
1172 1.4 augustss
1173 1.53 jmcneill KASSERT(mutex_owned(&sc->lock));
1174 1.53 jmcneill
1175 1.32 chap dev = b->sysex.device;
1176 1.4 augustss if (dev < 0 || dev >= sc->nmidi)
1177 1.77 riastrad return ENXIO;
1178 1.61 mrg DPRINTF(("%s: dev=%d\n", __func__, dev));
1179 1.4 augustss md = sc->devs[dev];
1180 1.4 augustss
1181 1.32 chap if (!md->doingsysex) {
1182 1.32 chap midiseq_out(md, (uint8_t[]){MIDI_SYSEX_START}, 1, 0);
1183 1.32 chap md->doingsysex = 1;
1184 1.4 augustss }
1185 1.4 augustss
1186 1.28 christos for (i = 0; i < 6 && bf[i] != 0xff; i++)
1187 1.4 augustss ;
1188 1.28 christos midiseq_out(md, bf, i, 0);
1189 1.28 christos if (i < 6 || (i > 0 && bf[i-1] == MIDI_SYSEX_END))
1190 1.32 chap md->doingsysex = 0;
1191 1.32 chap return 0;
1192 1.32 chap }
1193 1.32 chap
1194 1.32 chap static void
1195 1.32 chap seq_timer_waitabs(struct sequencer_softc *sc, uint32_t divs)
1196 1.32 chap {
1197 1.32 chap struct timeval when;
1198 1.32 chap long long usec;
1199 1.32 chap struct syn_timer *t;
1200 1.32 chap int ticks;
1201 1.32 chap
1202 1.53 jmcneill KASSERT(mutex_owned(&sc->lock));
1203 1.53 jmcneill
1204 1.32 chap t = &sc->timer;
1205 1.32 chap t->divs_lastevent = divs;
1206 1.32 chap divs -= t->divs_lastchange;
1207 1.32 chap usec = (long long)divs * (long long)t->usperdiv; /* convert to usec */
1208 1.32 chap when.tv_sec = usec / 1000000;
1209 1.32 chap when.tv_usec = usec % 1000000;
1210 1.51 cegger DPRINTFN(4, ("seq_timer_waitabs: adjdivs=%d, sleep when=%"PRId64".%06"PRId64,
1211 1.51 cegger divs, when.tv_sec, (uint64_t)when.tv_usec));
1212 1.32 chap ADDTIMEVAL(&when, &t->reftime); /* abstime for end */
1213 1.50 christos ticks = tvhzto(&when);
1214 1.51 cegger DPRINTFN(4, (" when+start=%"PRId64".%06"PRId64", tick=%d\n",
1215 1.51 cegger when.tv_sec, (uint64_t)when.tv_usec, ticks));
1216 1.32 chap if (ticks > 0) {
1217 1.32 chap #ifdef DIAGNOSTIC
1218 1.32 chap if (ticks > 20 * hz) {
1219 1.32 chap /* Waiting more than 20s */
1220 1.32 chap printf("seq_timer_waitabs: funny ticks=%d, "
1221 1.32 chap "usec=%lld\n", ticks, usec);
1222 1.32 chap }
1223 1.32 chap #endif
1224 1.32 chap sc->timeout = 1;
1225 1.32 chap callout_reset(&sc->sc_callout, ticks,
1226 1.32 chap seq_timeout, sc);
1227 1.32 chap }
1228 1.32 chap #ifdef SEQUENCER_DEBUG
1229 1.32 chap else if (tick < 0)
1230 1.61 mrg DPRINTF(("%s: ticks = %d\n", __func__, ticks));
1231 1.32 chap #endif
1232 1.1 augustss }
1233 1.1 augustss
1234 1.32 chap static int
1235 1.32 chap seq_do_timing(struct sequencer_softc *sc, seq_event_t *b)
1236 1.1 augustss {
1237 1.1 augustss struct syn_timer *t = &sc->timer;
1238 1.1 augustss struct timeval when;
1239 1.1 augustss int error;
1240 1.1 augustss
1241 1.53 jmcneill KASSERT(mutex_owned(&sc->lock));
1242 1.53 jmcneill
1243 1.1 augustss error = 0;
1244 1.32 chap switch(b->timing.op) {
1245 1.1 augustss case TMR_WAIT_REL:
1246 1.32 chap seq_timer_waitabs(sc,
1247 1.53 jmcneill b->t_WAIT_REL.divisions + t->divs_lastevent);
1248 1.32 chap break;
1249 1.1 augustss case TMR_WAIT_ABS:
1250 1.32 chap seq_timer_waitabs(sc, b->t_WAIT_ABS.divisions);
1251 1.1 augustss break;
1252 1.1 augustss case TMR_START:
1253 1.32 chap microtime(&t->reftime);
1254 1.32 chap t->divs_lastevent = t->divs_lastchange = 0;
1255 1.1 augustss t->running = 1;
1256 1.1 augustss break;
1257 1.1 augustss case TMR_STOP:
1258 1.32 chap microtime(&t->stoptime);
1259 1.1 augustss t->running = 0;
1260 1.1 augustss break;
1261 1.1 augustss case TMR_CONTINUE:
1262 1.32 chap if (t->running)
1263 1.32 chap break;
1264 1.1 augustss microtime(&when);
1265 1.32 chap SUBTIMEVAL(&when, &t->stoptime);
1266 1.32 chap ADDTIMEVAL(&t->reftime, &when);
1267 1.1 augustss t->running = 1;
1268 1.1 augustss break;
1269 1.1 augustss case TMR_TEMPO:
1270 1.32 chap /* bpm is unambiguously MIDI clocks per minute / 24 */
1271 1.32 chap /* (24 MIDI clocks are usually but not always a quarter note) */
1272 1.32 chap if (b->t_TEMPO.bpm < 8) /* where are these limits specified? */
1273 1.32 chap t->tempo_beatpermin = 8;
1274 1.32 chap else if (b->t_TEMPO.bpm > 360) /* ? */
1275 1.32 chap t->tempo_beatpermin = 360;
1276 1.32 chap else
1277 1.32 chap t->tempo_beatpermin = b->t_TEMPO.bpm;
1278 1.32 chap t->divs_lastchange = t->divs_lastevent;
1279 1.32 chap microtime(&t->reftime);
1280 1.32 chap RECALC_USPERDIV(t);
1281 1.1 augustss break;
1282 1.1 augustss case TMR_ECHO:
1283 1.1 augustss error = seq_input_event(sc, b);
1284 1.1 augustss break;
1285 1.1 augustss case TMR_RESET:
1286 1.32 chap t->divs_lastevent = t->divs_lastchange = 0;
1287 1.32 chap microtime(&t->reftime);
1288 1.32 chap break;
1289 1.32 chap case TMR_SPP:
1290 1.32 chap case TMR_TIMESIG:
1291 1.61 mrg DPRINTF(("%s: unimplemented %02x\n", __func__, b->timing.op));
1292 1.32 chap error = EINVAL; /* not quite accurate... */
1293 1.1 augustss break;
1294 1.1 augustss default:
1295 1.61 mrg DPRINTF(("%s: unknown %02x\n", __func__, b->timing.op));
1296 1.1 augustss error = EINVAL;
1297 1.1 augustss break;
1298 1.1 augustss }
1299 1.77 riastrad return error;
1300 1.1 augustss }
1301 1.1 augustss
1302 1.32 chap static int
1303 1.32 chap seq_do_fullsize(struct sequencer_softc *sc, seq_event_t *b, struct uio *uio)
1304 1.1 augustss {
1305 1.1 augustss struct sysex_info sysex;
1306 1.1 augustss u_int dev;
1307 1.1 augustss
1308 1.1 augustss #ifdef DIAGNOSTIC
1309 1.1 augustss if (sizeof(seq_event_rec) != SEQ_SYSEX_HDRSIZE) {
1310 1.1 augustss printf("seq_do_fullsize: sysex size ??\n");
1311 1.1 augustss return EINVAL;
1312 1.1 augustss }
1313 1.1 augustss #endif
1314 1.71 maxv memcpy(&sysex, b, sizeof(*b));
1315 1.1 augustss dev = sysex.device_no;
1316 1.34 christos if (/* dev < 0 || */ dev >= sc->nmidi)
1317 1.77 riastrad return ENXIO;
1318 1.1 augustss DPRINTFN(2, ("seq_do_fullsize: fmt=%04x, dev=%d, len=%d\n",
1319 1.1 augustss sysex.key, dev, sysex.len));
1320 1.77 riastrad return midiseq_loadpatch(sc->devs[dev], &sysex, uio);
1321 1.1 augustss }
1322 1.1 augustss
1323 1.32 chap /*
1324 1.32 chap * Convert an old sequencer event to a new one.
1325 1.32 chap * NOTE: on entry, *ev may contain valid data only in the first 4 bytes.
1326 1.32 chap * That may be true even on exit (!) in the case of SEQOLD_MIDIPUTC; the
1327 1.32 chap * caller will only look at the first bytes in that case anyway. Ugly? Sure.
1328 1.32 chap */
1329 1.32 chap static int
1330 1.32 chap seq_to_new(seq_event_t *ev, struct uio *uio)
1331 1.1 augustss {
1332 1.1 augustss int cmd, chan, note, parm;
1333 1.32 chap uint32_t tmp_delay;
1334 1.1 augustss int error;
1335 1.32 chap uint8_t *bfp;
1336 1.1 augustss
1337 1.32 chap cmd = ev->tag;
1338 1.32 chap bfp = ev->unknown.byte;
1339 1.32 chap chan = *bfp++;
1340 1.32 chap note = *bfp++;
1341 1.32 chap parm = *bfp++;
1342 1.1 augustss DPRINTFN(3, ("seq_to_new: 0x%02x %d %d %d\n", cmd, chan, note, parm));
1343 1.1 augustss
1344 1.1 augustss if (cmd >= 0x80) {
1345 1.1 augustss /* Fill the event record */
1346 1.1 augustss if (uio->uio_resid >= sizeof *ev - SEQOLD_CMDSIZE) {
1347 1.32 chap error = uiomove(bfp, sizeof *ev - SEQOLD_CMDSIZE, uio);
1348 1.1 augustss if (error)
1349 1.1 augustss return error;
1350 1.1 augustss } else
1351 1.1 augustss return EINVAL;
1352 1.1 augustss }
1353 1.1 augustss
1354 1.1 augustss switch(cmd) {
1355 1.1 augustss case SEQOLD_NOTEOFF:
1356 1.32 chap /*
1357 1.32 chap * What's with the SEQ_NOTE_XXX? In OSS this seems to have
1358 1.32 chap * been undocumented magic for messing with the overall volume
1359 1.32 chap * of a 'voice', equated precariously with 'channel' and
1360 1.32 chap * pretty much unimplementable except by directly frobbing a
1361 1.32 chap * synth chip. For us, who treat everything as interfaced over
1362 1.32 chap * MIDI, this will just be unceremoniously discarded as
1363 1.32 chap * invalid in midiseq_noteoff, making the whole event an
1364 1.32 chap * elaborate no-op, and that doesn't seem to be any different
1365 1.32 chap * from what happens on linux with a MIDI-interfaced device,
1366 1.32 chap * by the way. The moral is ... use the new /dev/music API, ok?
1367 1.32 chap */
1368 1.32 chap *ev = SEQ_MK_CHN(NOTEOFF, .device=0, .channel=chan,
1369 1.32 chap .key=SEQ_NOTE_XXX, .velocity=parm);
1370 1.32 chap break;
1371 1.1 augustss case SEQOLD_NOTEON:
1372 1.32 chap *ev = SEQ_MK_CHN(NOTEON,
1373 1.32 chap .device=0, .channel=chan, .key=note, .velocity=parm);
1374 1.1 augustss break;
1375 1.1 augustss case SEQOLD_WAIT:
1376 1.32 chap /*
1377 1.32 chap * This event cannot even /exist/ on non-littleendian machines,
1378 1.32 chap * and so help me, that's exactly the way OSS defined it.
1379 1.32 chap * Also, the OSS programmer's guide states (p. 74, v1.11)
1380 1.32 chap * that seqold time units are system clock ticks, unlike
1381 1.32 chap * the new 'divisions' which are determined by timebase. In
1382 1.32 chap * that case we would need to do scaling here - but no such
1383 1.32 chap * behavior is visible in linux either--which also treats this
1384 1.32 chap * value, surprisingly, as an absolute, not relative, time.
1385 1.32 chap * My guess is that this event has gone unused so long that
1386 1.32 chap * nobody could agree we got it wrong no matter what we do.
1387 1.32 chap */
1388 1.32 chap tmp_delay = *(uint32_t *)ev >> 8;
1389 1.32 chap *ev = SEQ_MK_TIMING(WAIT_ABS, .divisions=tmp_delay);
1390 1.1 augustss break;
1391 1.1 augustss case SEQOLD_SYNCTIMER:
1392 1.32 chap /*
1393 1.32 chap * The TMR_RESET event is not defined in any OSS materials
1394 1.32 chap * I can find; it may have been invented here just to provide
1395 1.32 chap * an accurate _to_new translation of this event.
1396 1.32 chap */
1397 1.32 chap *ev = SEQ_MK_TIMING(RESET);
1398 1.1 augustss break;
1399 1.1 augustss case SEQOLD_PGMCHANGE:
1400 1.32 chap *ev = SEQ_MK_CHN(PGM_CHANGE,
1401 1.32 chap .device=0, .channel=chan, .program=note);
1402 1.1 augustss break;
1403 1.1 augustss case SEQOLD_MIDIPUTC:
1404 1.1 augustss break; /* interpret in normal mode */
1405 1.1 augustss case SEQOLD_ECHO:
1406 1.1 augustss case SEQOLD_PRIVATE:
1407 1.1 augustss case SEQOLD_EXTENDED:
1408 1.1 augustss default:
1409 1.61 mrg DPRINTF(("%s: not impl 0x%02x\n", __func__, cmd));
1410 1.1 augustss return EINVAL;
1411 1.32 chap /* In case new-style events show up */
1412 1.1 augustss case SEQ_TIMING:
1413 1.1 augustss case SEQ_CHN_VOICE:
1414 1.1 augustss case SEQ_CHN_COMMON:
1415 1.1 augustss case SEQ_FULLSIZE:
1416 1.1 augustss break;
1417 1.1 augustss }
1418 1.1 augustss return 0;
1419 1.1 augustss }
1420 1.1 augustss
1421 1.1 augustss /**********************************************/
1422 1.1 augustss
1423 1.1 augustss void
1424 1.37 christos midiseq_in(struct midi_dev *md, u_char *msg, int len)
1425 1.1 augustss {
1426 1.53 jmcneill struct sequencer_softc *sc;
1427 1.53 jmcneill sequencer_pcqitem_t qi;
1428 1.1 augustss
1429 1.27 perry DPRINTFN(2, ("midiseq_in: %p %02x %02x %02x\n",
1430 1.1 augustss md, msg[0], msg[1], msg[2]));
1431 1.1 augustss
1432 1.53 jmcneill sc = md->seq;
1433 1.53 jmcneill
1434 1.53 jmcneill qi.qi_msg[0] = msg[0];
1435 1.53 jmcneill qi.qi_msg[1] = msg[1];
1436 1.53 jmcneill qi.qi_msg[2] = msg[2];
1437 1.53 jmcneill qi.qi_msg[3] = md->unit | 0x80; /* ensure non-zero value of qi_ptr */
1438 1.53 jmcneill pcq_put(sc->pcq, qi.qi_ptr);
1439 1.53 jmcneill softint_schedule(sc->sih);
1440 1.1 augustss }
1441 1.1 augustss
1442 1.32 chap static struct midi_dev *
1443 1.32 chap midiseq_open(int unit, int flags)
1444 1.1 augustss {
1445 1.1 augustss int error;
1446 1.1 augustss struct midi_dev *md;
1447 1.1 augustss struct midi_softc *sc;
1448 1.1 augustss struct midi_info mi;
1449 1.41 ad int major;
1450 1.41 ad dev_t dev;
1451 1.53 jmcneill vnode_t *vp;
1452 1.54 mrg int oflags;
1453 1.77 riastrad
1454 1.46 plunky major = devsw_name2chr("midi", NULL, 0);
1455 1.41 ad dev = makedev(major, unit);
1456 1.1 augustss
1457 1.53 jmcneill DPRINTFN(2, ("midiseq_open: %d %d\n", unit, flags));
1458 1.53 jmcneill
1459 1.53 jmcneill error = cdevvp(dev, &vp);
1460 1.53 jmcneill if (error)
1461 1.53 jmcneill return NULL;
1462 1.53 jmcneill vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1463 1.53 jmcneill error = VOP_OPEN(vp, flags, kauth_cred_get());
1464 1.53 jmcneill VOP_UNLOCK(vp);
1465 1.53 jmcneill if (error) {
1466 1.53 jmcneill vrele(vp);
1467 1.53 jmcneill return NULL;
1468 1.53 jmcneill }
1469 1.53 jmcneill
1470 1.53 jmcneill /* Only after we have acquired reference via VOP_OPEN(). */
1471 1.41 ad midi_getinfo(dev, &mi);
1472 1.54 mrg oflags = flags;
1473 1.53 jmcneill if ((mi.props & MIDI_PROP_CAN_INPUT) == 0)
1474 1.32 chap flags &= ~FREAD;
1475 1.53 jmcneill if ((flags & (FREAD|FWRITE)) == 0) {
1476 1.54 mrg VOP_CLOSE(vp, oflags, kauth_cred_get());
1477 1.53 jmcneill vrele(vp);
1478 1.53 jmcneill return NULL;
1479 1.53 jmcneill }
1480 1.53 jmcneill
1481 1.49 cegger sc = device_lookup_private(&midi_cd, unit);
1482 1.53 jmcneill md = kmem_zalloc(sizeof(*md), KM_SLEEP);
1483 1.1 augustss md->unit = unit;
1484 1.1 augustss md->name = mi.name;
1485 1.1 augustss md->subtype = 0;
1486 1.2 augustss md->nr_voices = 128; /* XXX */
1487 1.2 augustss md->instr_bank_size = 128; /* XXX */
1488 1.53 jmcneill md->vp = vp;
1489 1.1 augustss if (mi.props & MIDI_PROP_CAN_INPUT)
1490 1.1 augustss md->capabilities |= SYNTH_CAP_INPUT;
1491 1.53 jmcneill sc->seq_md = md;
1492 1.77 riastrad return md;
1493 1.1 augustss }
1494 1.1 augustss
1495 1.32 chap static void
1496 1.32 chap midiseq_close(struct midi_dev *md)
1497 1.1 augustss {
1498 1.77 riastrad
1499 1.3 augustss DPRINTFN(2, ("midiseq_close: %d\n", md->unit));
1500 1.53 jmcneill (void)vn_close(md->vp, 0, kauth_cred_get());
1501 1.53 jmcneill kmem_free(md, sizeof(*md));
1502 1.1 augustss }
1503 1.1 augustss
1504 1.32 chap static void
1505 1.37 christos midiseq_reset(struct midi_dev *md)
1506 1.1 augustss {
1507 1.5 augustss /* XXX send GM reset? */
1508 1.3 augustss DPRINTFN(3, ("midiseq_reset: %d\n", md->unit));
1509 1.1 augustss }
1510 1.1 augustss
1511 1.32 chap static int
1512 1.37 christos midiseq_out(struct midi_dev *md, u_char *bf, u_int cc, int chk)
1513 1.1 augustss {
1514 1.60 mrg DPRINTFN(5, ("midiseq_out: md=%p, unit=%d, bf[0]=0x%02x, cc=%d\n",
1515 1.60 mrg md, md->unit, bf[0], cc));
1516 1.10 augustss
1517 1.32 chap /* midi(4) does running status compression where appropriate. */
1518 1.28 christos return midi_writebytes(md->unit, bf, cc);
1519 1.1 augustss }
1520 1.1 augustss
1521 1.32 chap /*
1522 1.32 chap * If the writing process hands us a hidden note-off in a note-on event,
1523 1.32 chap * we will simply write it that way; no need to special case it here,
1524 1.32 chap * as midi(4) will always canonicalize or compress as appropriate anyway.
1525 1.32 chap */
1526 1.32 chap static int
1527 1.32 chap midiseq_noteon(struct midi_dev *md, int chan, int key, seq_event_t *ev)
1528 1.1 augustss {
1529 1.77 riastrad
1530 1.32 chap return midiseq_out(md, (uint8_t[]){
1531 1.32 chap MIDI_NOTEON | chan, key, ev->c_NOTEON.velocity & 0x7f}, 3, 1);
1532 1.1 augustss }
1533 1.1 augustss
1534 1.32 chap static int
1535 1.32 chap midiseq_noteoff(struct midi_dev *md, int chan, int key, seq_event_t *ev)
1536 1.1 augustss {
1537 1.77 riastrad
1538 1.32 chap return midiseq_out(md, (uint8_t[]){
1539 1.32 chap MIDI_NOTEOFF | chan, key, ev->c_NOTEOFF.velocity & 0x7f}, 3, 1);
1540 1.1 augustss }
1541 1.1 augustss
1542 1.32 chap static int
1543 1.32 chap midiseq_keypressure(struct midi_dev *md, int chan, int key, seq_event_t *ev)
1544 1.1 augustss {
1545 1.77 riastrad
1546 1.32 chap return midiseq_out(md, (uint8_t[]){
1547 1.32 chap MIDI_KEY_PRESSURE | chan, key,
1548 1.32 chap ev->c_KEY_PRESSURE.pressure & 0x7f}, 3, 1);
1549 1.1 augustss }
1550 1.1 augustss
1551 1.32 chap static int
1552 1.32 chap midiseq_pgmchange(struct midi_dev *md, int chan, seq_event_t *ev)
1553 1.1 augustss {
1554 1.77 riastrad
1555 1.32 chap if (ev->c_PGM_CHANGE.program > 127)
1556 1.1 augustss return EINVAL;
1557 1.32 chap return midiseq_out(md, (uint8_t[]){
1558 1.32 chap MIDI_PGM_CHANGE | chan, ev->c_PGM_CHANGE.program}, 2, 1);
1559 1.8 augustss }
1560 1.8 augustss
1561 1.32 chap static int
1562 1.32 chap midiseq_chnpressure(struct midi_dev *md, int chan, seq_event_t *ev)
1563 1.8 augustss {
1564 1.77 riastrad
1565 1.32 chap if (ev->c_CHN_PRESSURE.pressure > 127)
1566 1.8 augustss return EINVAL;
1567 1.32 chap return midiseq_out(md, (uint8_t[]){
1568 1.32 chap MIDI_CHN_PRESSURE | chan, ev->c_CHN_PRESSURE.pressure}, 2, 1);
1569 1.1 augustss }
1570 1.1 augustss
1571 1.32 chap static int
1572 1.32 chap midiseq_ctlchange(struct midi_dev *md, int chan, seq_event_t *ev)
1573 1.1 augustss {
1574 1.77 riastrad
1575 1.32 chap if (ev->c_CTL_CHANGE.controller > 127)
1576 1.1 augustss return EINVAL;
1577 1.32 chap return midiseq_out( md, (uint8_t[]){
1578 1.32 chap MIDI_CTL_CHANGE | chan, ev->c_CTL_CHANGE.controller,
1579 1.32 chap ev->c_CTL_CHANGE.value & 0x7f /* XXX this is SO wrong */
1580 1.32 chap }, 3, 1);
1581 1.1 augustss }
1582 1.1 augustss
1583 1.32 chap static int
1584 1.32 chap midiseq_pitchbend(struct midi_dev *md, int chan, seq_event_t *ev)
1585 1.1 augustss {
1586 1.77 riastrad
1587 1.32 chap return midiseq_out(md, (uint8_t[]){
1588 1.32 chap MIDI_PITCH_BEND | chan,
1589 1.32 chap ev->c_PITCH_BEND.value & 0x7f,
1590 1.32 chap (ev->c_PITCH_BEND.value >> 7) & 0x7f}, 3, 1);
1591 1.1 augustss }
1592 1.1 augustss
1593 1.32 chap static int
1594 1.32 chap midiseq_loadpatch(struct midi_dev *md,
1595 1.32 chap struct sysex_info *sysex, struct uio *uio)
1596 1.1 augustss {
1597 1.53 jmcneill struct sequencer_softc *sc;
1598 1.28 christos u_char c, bf[128];
1599 1.1 augustss int i, cc, error;
1600 1.1 augustss
1601 1.5 augustss if (sysex->key != SEQ_SYSEX_PATCH) {
1602 1.5 augustss DPRINTFN(-1,("midiseq_loadpatch: bad patch key 0x%04x\n",
1603 1.5 augustss sysex->key));
1604 1.77 riastrad return EINVAL;
1605 1.5 augustss }
1606 1.1 augustss if (uio->uio_resid < sysex->len)
1607 1.1 augustss /* adjust length, should be an error */
1608 1.1 augustss sysex->len = uio->uio_resid;
1609 1.1 augustss
1610 1.3 augustss DPRINTFN(2, ("midiseq_loadpatch: len=%d\n", sysex->len));
1611 1.1 augustss if (sysex->len == 0)
1612 1.1 augustss return EINVAL;
1613 1.1 augustss error = uiomove(&c, 1, uio);
1614 1.1 augustss if (error)
1615 1.1 augustss return error;
1616 1.1 augustss if (c != MIDI_SYSEX_START) /* must start like this */
1617 1.1 augustss return EINVAL;
1618 1.53 jmcneill sc = md->seq;
1619 1.53 jmcneill mutex_enter(&sc->lock);
1620 1.7 augustss error = midiseq_out(md, &c, 1, 0);
1621 1.53 jmcneill mutex_exit(&sc->lock);
1622 1.1 augustss if (error)
1623 1.1 augustss return error;
1624 1.1 augustss --sysex->len;
1625 1.1 augustss while (sysex->len > 0) {
1626 1.1 augustss cc = sysex->len;
1627 1.28 christos if (cc > sizeof bf)
1628 1.28 christos cc = sizeof bf;
1629 1.28 christos error = uiomove(bf, cc, uio);
1630 1.1 augustss if (error)
1631 1.1 augustss break;
1632 1.28 christos for(i = 0; i < cc && !MIDI_IS_STATUS(bf[i]); i++)
1633 1.1 augustss ;
1634 1.32 chap /*
1635 1.38 christos * XXX midi(4)'s buffer might not accommodate this, and the
1636 1.32 chap * function will not block us (though in this case we have
1637 1.32 chap * a process and could in principle block).
1638 1.32 chap */
1639 1.53 jmcneill mutex_enter(&sc->lock);
1640 1.28 christos error = midiseq_out(md, bf, i, 0);
1641 1.53 jmcneill mutex_exit(&sc->lock);
1642 1.1 augustss if (error)
1643 1.1 augustss break;
1644 1.1 augustss sysex->len -= i;
1645 1.1 augustss if (i != cc)
1646 1.1 augustss break;
1647 1.1 augustss }
1648 1.32 chap /*
1649 1.32 chap * Any leftover data in uio is rubbish;
1650 1.27 perry * the SYSEX should be one write ending in SYSEX_END.
1651 1.1 augustss */
1652 1.1 augustss uio->uio_resid = 0;
1653 1.1 augustss c = MIDI_SYSEX_END;
1654 1.53 jmcneill mutex_enter(&sc->lock);
1655 1.53 jmcneill error = midiseq_out(md, &c, 1, 0);
1656 1.53 jmcneill mutex_exit(&sc->lock);
1657 1.53 jmcneill return error;
1658 1.1 augustss }
1659 1.1 augustss
1660 1.9 augustss #if NMIDI == 0
1661 1.32 chap static dev_type_open(midiopen);
1662 1.32 chap static dev_type_close(midiclose);
1663 1.20 gehenna
1664 1.20 gehenna const struct cdevsw midi_cdevsw = {
1665 1.58 dholland .d_open = midiopen,
1666 1.58 dholland .d_close = midiclose,
1667 1.58 dholland .d_read = noread,
1668 1.58 dholland .d_write = nowrite,
1669 1.58 dholland .d_ioctl = noioctl,
1670 1.58 dholland .d_stop = nostop,
1671 1.58 dholland .d_tty = notty,
1672 1.58 dholland .d_poll = nopoll,
1673 1.58 dholland .d_mmap = nommap,
1674 1.58 dholland .d_kqfilter = nokqfilter,
1675 1.59 dholland .d_discard = nodiscard,
1676 1.58 dholland .d_flag = D_OTHER | D_MPSAFE
1677 1.20 gehenna };
1678 1.20 gehenna
1679 1.9 augustss /*
1680 1.9 augustss * If someone has a sequencer, but no midi devices there will
1681 1.9 augustss * be unresolved references, so we provide little stubs.
1682 1.9 augustss */
1683 1.9 augustss
1684 1.9 augustss int
1685 1.52 cegger midi_unit_count(void)
1686 1.9 augustss {
1687 1.77 riastrad return 0;
1688 1.9 augustss }
1689 1.9 augustss
1690 1.32 chap static int
1691 1.32 chap midiopen(dev_t dev, int flags, int ifmt, struct lwp *l)
1692 1.9 augustss {
1693 1.77 riastrad return ENXIO;
1694 1.9 augustss }
1695 1.9 augustss
1696 1.9 augustss struct cfdriver midi_cd;
1697 1.9 augustss
1698 1.9 augustss void
1699 1.32 chap midi_getinfo(dev_t dev, struct midi_info *mi)
1700 1.9 augustss {
1701 1.31 tron mi->name = "Dummy MIDI device";
1702 1.31 tron mi->props = 0;
1703 1.9 augustss }
1704 1.9 augustss
1705 1.32 chap static int
1706 1.32 chap midiclose(dev_t dev, int flags, int ifmt, struct lwp *l)
1707 1.9 augustss {
1708 1.77 riastrad return ENXIO;
1709 1.9 augustss }
1710 1.9 augustss
1711 1.9 augustss int
1712 1.32 chap midi_writebytes(int unit, u_char *bf, int cc)
1713 1.9 augustss {
1714 1.77 riastrad return ENXIO;
1715 1.9 augustss }
1716 1.9 augustss #endif /* NMIDI == 0 */
1717 1.66 pgoyette
1718 1.66 pgoyette #ifdef _MODULE
1719 1.66 pgoyette #include "ioconf.c"
1720 1.66 pgoyette
1721 1.66 pgoyette devmajor_t sequencer_bmajor = -1, sequencer_cmajor = -1;
1722 1.66 pgoyette #endif
1723 1.66 pgoyette
1724 1.66 pgoyette MODULE(MODULE_CLASS_DRIVER, sequencer, "midi");
1725 1.66 pgoyette
1726 1.66 pgoyette static int
1727 1.66 pgoyette sequencer_modcmd(modcmd_t cmd, void *arg)
1728 1.66 pgoyette {
1729 1.66 pgoyette int error = 0;
1730 1.66 pgoyette
1731 1.66 pgoyette #ifdef _MODULE
1732 1.66 pgoyette switch (cmd) {
1733 1.66 pgoyette case MODULE_CMD_INIT:
1734 1.66 pgoyette error = devsw_attach(sequencer_cd.cd_name,
1735 1.66 pgoyette NULL, &sequencer_bmajor,
1736 1.66 pgoyette &sequencer_cdevsw, &sequencer_cmajor);
1737 1.66 pgoyette if (error)
1738 1.66 pgoyette break;
1739 1.66 pgoyette
1740 1.66 pgoyette error = config_init_component(cfdriver_ioconf_sequencer,
1741 1.66 pgoyette cfattach_ioconf_sequencer, cfdata_ioconf_sequencer);
1742 1.66 pgoyette if (error) {
1743 1.66 pgoyette devsw_detach(NULL, &sequencer_cdevsw);
1744 1.66 pgoyette }
1745 1.66 pgoyette break;
1746 1.66 pgoyette case MODULE_CMD_FINI:
1747 1.66 pgoyette error = config_fini_component(cfdriver_ioconf_sequencer,
1748 1.66 pgoyette cfattach_ioconf_sequencer, cfdata_ioconf_sequencer);
1749 1.76 pgoyette if (error == 0)
1750 1.76 pgoyette devsw_detach(NULL, &sequencer_cdevsw);
1751 1.66 pgoyette break;
1752 1.66 pgoyette default:
1753 1.66 pgoyette error = ENOTTY;
1754 1.66 pgoyette break;
1755 1.66 pgoyette }
1756 1.66 pgoyette #endif
1757 1.66 pgoyette
1758 1.66 pgoyette return error;
1759 1.66 pgoyette }
1760