2 * Virtual Raw MIDI client on Sequencer
4 * Copyright (c) 2000 by Takashi Iwai <tiwai@suse.de>,
5 * Jaroslav Kysela <perex@perex.cz>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * Virtual Raw MIDI client
26 * The virtual rawmidi client is a sequencer client which associate
27 * a rawmidi device file. The created rawmidi device file can be
28 * accessed as a normal raw midi, but its MIDI source and destination
29 * are arbitrary. For example, a user-client software synth connected
30 * to this port can be used as a normal midi device as well.
32 * The virtual rawmidi device accepts also multiple opens. Each file
33 * has its own input buffer, so that no conflict would occur. The drain
34 * of input/output buffer acts only to the local buffer.
38 #include <linux/init.h>
39 #include <linux/wait.h>
40 #include <linux/module.h>
41 #include <linux/slab.h>
42 #include <sound/core.h>
43 #include <sound/rawmidi.h>
44 #include <sound/info.h>
45 #include <sound/control.h>
46 #include <sound/minors.h>
47 #include <sound/seq_kernel.h>
48 #include <sound/seq_midi_event.h>
49 #include <sound/seq_virmidi.h>
51 MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
52 MODULE_DESCRIPTION("Virtual Raw MIDI client on Sequencer");
53 MODULE_LICENSE("GPL");
56 * initialize an event record
58 static void snd_virmidi_init_event(struct snd_virmidi
*vmidi
,
59 struct snd_seq_event
*ev
)
61 memset(ev
, 0, sizeof(*ev
));
62 ev
->source
.port
= vmidi
->port
;
63 switch (vmidi
->seq_mode
) {
64 case SNDRV_VIRMIDI_SEQ_DISPATCH
:
65 ev
->dest
.client
= SNDRV_SEQ_ADDRESS_SUBSCRIBERS
;
67 case SNDRV_VIRMIDI_SEQ_ATTACH
:
68 /* FIXME: source and destination are same - not good.. */
69 ev
->dest
.client
= vmidi
->client
;
70 ev
->dest
.port
= vmidi
->port
;
73 ev
->type
= SNDRV_SEQ_EVENT_NONE
;
77 * decode input event and put to read buffer of each opened file
79 static int snd_virmidi_dev_receive_event(struct snd_virmidi_dev
*rdev
,
80 struct snd_seq_event
*ev
,
83 struct snd_virmidi
*vmidi
;
88 read_lock(&rdev
->filelist_lock
);
90 down_read(&rdev
->filelist_sem
);
91 list_for_each_entry(vmidi
, &rdev
->filelist
, list
) {
94 if (ev
->type
== SNDRV_SEQ_EVENT_SYSEX
) {
95 if ((ev
->flags
& SNDRV_SEQ_EVENT_LENGTH_MASK
) != SNDRV_SEQ_EVENT_LENGTH_VARIABLE
)
97 snd_seq_dump_var_event(ev
, (snd_seq_dump_func_t
)snd_rawmidi_receive
, vmidi
->substream
);
99 len
= snd_midi_event_decode(vmidi
->parser
, msg
, sizeof(msg
), ev
);
101 snd_rawmidi_receive(vmidi
->substream
, msg
, len
);
105 read_unlock(&rdev
->filelist_lock
);
107 up_read(&rdev
->filelist_sem
);
113 * receive an event from the remote virmidi port
115 * for rawmidi inputs, you can call this function from the event
116 * handler of a remote port which is attached to the virmidi via
117 * SNDRV_VIRMIDI_SEQ_ATTACH.
120 int snd_virmidi_receive(struct snd_rawmidi
*rmidi
, struct snd_seq_event
*ev
)
122 struct snd_virmidi_dev
*rdev
;
124 rdev
= rmidi
->private_data
;
125 return snd_virmidi_dev_receive_event(rdev
, ev
, true);
130 * event handler of virmidi port
132 static int snd_virmidi_event_input(struct snd_seq_event
*ev
, int direct
,
133 void *private_data
, int atomic
, int hop
)
135 struct snd_virmidi_dev
*rdev
;
138 if (!(rdev
->flags
& SNDRV_VIRMIDI_USE
))
139 return 0; /* ignored */
140 return snd_virmidi_dev_receive_event(rdev
, ev
, atomic
);
144 * trigger rawmidi stream for input
146 static void snd_virmidi_input_trigger(struct snd_rawmidi_substream
*substream
, int up
)
148 struct snd_virmidi
*vmidi
= substream
->runtime
->private_data
;
158 * trigger rawmidi stream for output
160 static void snd_virmidi_output_trigger(struct snd_rawmidi_substream
*substream
, int up
)
162 struct snd_virmidi
*vmidi
= substream
->runtime
->private_data
;
164 unsigned char buf
[32], *pbuf
;
166 bool check_resched
= !in_atomic();
170 if (vmidi
->seq_mode
== SNDRV_VIRMIDI_SEQ_DISPATCH
&&
171 !(vmidi
->rdev
->flags
& SNDRV_VIRMIDI_SUBSCRIBE
)) {
172 while (snd_rawmidi_transmit(substream
, buf
,
178 spin_lock_irqsave(&substream
->runtime
->lock
, flags
);
179 if (vmidi
->event
.type
!= SNDRV_SEQ_EVENT_NONE
) {
180 if (snd_seq_kernel_client_dispatch(vmidi
->client
, &vmidi
->event
, in_atomic(), 0) < 0)
182 vmidi
->event
.type
= SNDRV_SEQ_EVENT_NONE
;
185 count
= __snd_rawmidi_transmit_peek(substream
, buf
, sizeof(buf
));
190 res
= snd_midi_event_encode(vmidi
->parser
, pbuf
, count
, &vmidi
->event
);
192 snd_midi_event_reset_encode(vmidi
->parser
);
195 __snd_rawmidi_transmit_ack(substream
, res
);
198 if (vmidi
->event
.type
!= SNDRV_SEQ_EVENT_NONE
) {
199 if (snd_seq_kernel_client_dispatch(vmidi
->client
, &vmidi
->event
, in_atomic(), 0) < 0)
201 vmidi
->event
.type
= SNDRV_SEQ_EVENT_NONE
;
206 /* do temporary unlock & cond_resched() for avoiding
207 * CPU soft lockup, which may happen via a write from
208 * a huge rawmidi buffer
210 spin_unlock_irqrestore(&substream
->runtime
->lock
, flags
);
212 spin_lock_irqsave(&substream
->runtime
->lock
, flags
);
215 spin_unlock_irqrestore(&substream
->runtime
->lock
, flags
);
222 * open rawmidi handle for input
224 static int snd_virmidi_input_open(struct snd_rawmidi_substream
*substream
)
226 struct snd_virmidi_dev
*rdev
= substream
->rmidi
->private_data
;
227 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
228 struct snd_virmidi
*vmidi
;
230 vmidi
= kzalloc(sizeof(*vmidi
), GFP_KERNEL
);
233 vmidi
->substream
= substream
;
234 if (snd_midi_event_new(0, &vmidi
->parser
) < 0) {
238 vmidi
->seq_mode
= rdev
->seq_mode
;
239 vmidi
->client
= rdev
->client
;
240 vmidi
->port
= rdev
->port
;
241 runtime
->private_data
= vmidi
;
242 down_write(&rdev
->filelist_sem
);
243 write_lock_irq(&rdev
->filelist_lock
);
244 list_add_tail(&vmidi
->list
, &rdev
->filelist
);
245 write_unlock_irq(&rdev
->filelist_lock
);
246 up_write(&rdev
->filelist_sem
);
252 * open rawmidi handle for output
254 static int snd_virmidi_output_open(struct snd_rawmidi_substream
*substream
)
256 struct snd_virmidi_dev
*rdev
= substream
->rmidi
->private_data
;
257 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
258 struct snd_virmidi
*vmidi
;
260 vmidi
= kzalloc(sizeof(*vmidi
), GFP_KERNEL
);
263 vmidi
->substream
= substream
;
264 if (snd_midi_event_new(MAX_MIDI_EVENT_BUF
, &vmidi
->parser
) < 0) {
268 vmidi
->seq_mode
= rdev
->seq_mode
;
269 vmidi
->client
= rdev
->client
;
270 vmidi
->port
= rdev
->port
;
271 snd_virmidi_init_event(vmidi
, &vmidi
->event
);
273 runtime
->private_data
= vmidi
;
278 * close rawmidi handle for input
280 static int snd_virmidi_input_close(struct snd_rawmidi_substream
*substream
)
282 struct snd_virmidi_dev
*rdev
= substream
->rmidi
->private_data
;
283 struct snd_virmidi
*vmidi
= substream
->runtime
->private_data
;
285 down_write(&rdev
->filelist_sem
);
286 write_lock_irq(&rdev
->filelist_lock
);
287 list_del(&vmidi
->list
);
288 write_unlock_irq(&rdev
->filelist_lock
);
289 up_write(&rdev
->filelist_sem
);
290 snd_midi_event_free(vmidi
->parser
);
291 substream
->runtime
->private_data
= NULL
;
297 * close rawmidi handle for output
299 static int snd_virmidi_output_close(struct snd_rawmidi_substream
*substream
)
301 struct snd_virmidi
*vmidi
= substream
->runtime
->private_data
;
302 snd_midi_event_free(vmidi
->parser
);
303 substream
->runtime
->private_data
= NULL
;
309 * subscribe callback - allow output to rawmidi device
311 static int snd_virmidi_subscribe(void *private_data
,
312 struct snd_seq_port_subscribe
*info
)
314 struct snd_virmidi_dev
*rdev
;
317 if (!try_module_get(rdev
->card
->module
))
319 rdev
->flags
|= SNDRV_VIRMIDI_SUBSCRIBE
;
324 * unsubscribe callback - disallow output to rawmidi device
326 static int snd_virmidi_unsubscribe(void *private_data
,
327 struct snd_seq_port_subscribe
*info
)
329 struct snd_virmidi_dev
*rdev
;
332 rdev
->flags
&= ~SNDRV_VIRMIDI_SUBSCRIBE
;
333 module_put(rdev
->card
->module
);
339 * use callback - allow input to rawmidi device
341 static int snd_virmidi_use(void *private_data
,
342 struct snd_seq_port_subscribe
*info
)
344 struct snd_virmidi_dev
*rdev
;
347 if (!try_module_get(rdev
->card
->module
))
349 rdev
->flags
|= SNDRV_VIRMIDI_USE
;
354 * unuse callback - disallow input to rawmidi device
356 static int snd_virmidi_unuse(void *private_data
,
357 struct snd_seq_port_subscribe
*info
)
359 struct snd_virmidi_dev
*rdev
;
362 rdev
->flags
&= ~SNDRV_VIRMIDI_USE
;
363 module_put(rdev
->card
->module
);
372 static const struct snd_rawmidi_ops snd_virmidi_input_ops
= {
373 .open
= snd_virmidi_input_open
,
374 .close
= snd_virmidi_input_close
,
375 .trigger
= snd_virmidi_input_trigger
,
378 static const struct snd_rawmidi_ops snd_virmidi_output_ops
= {
379 .open
= snd_virmidi_output_open
,
380 .close
= snd_virmidi_output_close
,
381 .trigger
= snd_virmidi_output_trigger
,
385 * create a sequencer client and a port
387 static int snd_virmidi_dev_attach_seq(struct snd_virmidi_dev
*rdev
)
390 struct snd_seq_port_callback pcallbacks
;
391 struct snd_seq_port_info
*pinfo
;
394 if (rdev
->client
>= 0)
397 pinfo
= kzalloc(sizeof(*pinfo
), GFP_KERNEL
);
403 client
= snd_seq_create_kernel_client(rdev
->card
, rdev
->device
,
404 "%s %d-%d", rdev
->rmidi
->name
,
411 rdev
->client
= client
;
414 pinfo
->addr
.client
= client
;
415 sprintf(pinfo
->name
, "VirMIDI %d-%d", rdev
->card
->number
, rdev
->device
);
416 /* set all capabilities */
417 pinfo
->capability
|= SNDRV_SEQ_PORT_CAP_WRITE
| SNDRV_SEQ_PORT_CAP_SYNC_WRITE
| SNDRV_SEQ_PORT_CAP_SUBS_WRITE
;
418 pinfo
->capability
|= SNDRV_SEQ_PORT_CAP_READ
| SNDRV_SEQ_PORT_CAP_SYNC_READ
| SNDRV_SEQ_PORT_CAP_SUBS_READ
;
419 pinfo
->capability
|= SNDRV_SEQ_PORT_CAP_DUPLEX
;
420 pinfo
->type
= SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC
421 | SNDRV_SEQ_PORT_TYPE_SOFTWARE
422 | SNDRV_SEQ_PORT_TYPE_PORT
;
423 pinfo
->midi_channels
= 16;
424 memset(&pcallbacks
, 0, sizeof(pcallbacks
));
425 pcallbacks
.owner
= THIS_MODULE
;
426 pcallbacks
.private_data
= rdev
;
427 pcallbacks
.subscribe
= snd_virmidi_subscribe
;
428 pcallbacks
.unsubscribe
= snd_virmidi_unsubscribe
;
429 pcallbacks
.use
= snd_virmidi_use
;
430 pcallbacks
.unuse
= snd_virmidi_unuse
;
431 pcallbacks
.event_input
= snd_virmidi_event_input
;
432 pinfo
->kernel
= &pcallbacks
;
433 err
= snd_seq_kernel_client_ctl(client
, SNDRV_SEQ_IOCTL_CREATE_PORT
, pinfo
);
435 snd_seq_delete_kernel_client(client
);
440 rdev
->port
= pinfo
->addr
.port
;
441 err
= 0; /* success */
450 * release the sequencer client
452 static void snd_virmidi_dev_detach_seq(struct snd_virmidi_dev
*rdev
)
454 if (rdev
->client
>= 0) {
455 snd_seq_delete_kernel_client(rdev
->client
);
461 * register the device
463 static int snd_virmidi_dev_register(struct snd_rawmidi
*rmidi
)
465 struct snd_virmidi_dev
*rdev
= rmidi
->private_data
;
468 switch (rdev
->seq_mode
) {
469 case SNDRV_VIRMIDI_SEQ_DISPATCH
:
470 err
= snd_virmidi_dev_attach_seq(rdev
);
474 case SNDRV_VIRMIDI_SEQ_ATTACH
:
475 if (rdev
->client
== 0)
477 /* should check presence of port more strictly.. */
480 pr_err("ALSA: seq_virmidi: seq_mode is not set: %d\n", rdev
->seq_mode
);
488 * unregister the device
490 static int snd_virmidi_dev_unregister(struct snd_rawmidi
*rmidi
)
492 struct snd_virmidi_dev
*rdev
= rmidi
->private_data
;
494 if (rdev
->seq_mode
== SNDRV_VIRMIDI_SEQ_DISPATCH
)
495 snd_virmidi_dev_detach_seq(rdev
);
502 static const struct snd_rawmidi_global_ops snd_virmidi_global_ops
= {
503 .dev_register
= snd_virmidi_dev_register
,
504 .dev_unregister
= snd_virmidi_dev_unregister
,
510 static void snd_virmidi_free(struct snd_rawmidi
*rmidi
)
512 struct snd_virmidi_dev
*rdev
= rmidi
->private_data
;
517 * create a new device
521 int snd_virmidi_new(struct snd_card
*card
, int device
, struct snd_rawmidi
**rrmidi
)
523 struct snd_rawmidi
*rmidi
;
524 struct snd_virmidi_dev
*rdev
;
528 if ((err
= snd_rawmidi_new(card
, "VirMidi", device
,
529 16, /* may be configurable */
530 16, /* may be configurable */
533 strcpy(rmidi
->name
, rmidi
->id
);
534 rdev
= kzalloc(sizeof(*rdev
), GFP_KERNEL
);
536 snd_device_free(card
, rmidi
);
541 rdev
->device
= device
;
543 init_rwsem(&rdev
->filelist_sem
);
544 rwlock_init(&rdev
->filelist_lock
);
545 INIT_LIST_HEAD(&rdev
->filelist
);
546 rdev
->seq_mode
= SNDRV_VIRMIDI_SEQ_DISPATCH
;
547 rmidi
->private_data
= rdev
;
548 rmidi
->private_free
= snd_virmidi_free
;
549 rmidi
->ops
= &snd_virmidi_global_ops
;
550 snd_rawmidi_set_ops(rmidi
, SNDRV_RAWMIDI_STREAM_INPUT
, &snd_virmidi_input_ops
);
551 snd_rawmidi_set_ops(rmidi
, SNDRV_RAWMIDI_STREAM_OUTPUT
, &snd_virmidi_output_ops
);
552 rmidi
->info_flags
= SNDRV_RAWMIDI_INFO_INPUT
|
553 SNDRV_RAWMIDI_INFO_OUTPUT
|
554 SNDRV_RAWMIDI_INFO_DUPLEX
;
558 EXPORT_SYMBOL(snd_virmidi_new
);
564 static int __init
alsa_virmidi_init(void)
569 static void __exit
alsa_virmidi_exit(void)
573 module_init(alsa_virmidi_init
)
574 module_exit(alsa_virmidi_exit
)