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 <sound/driver.h>
39 #include <linux/init.h>
40 #include <linux/wait.h>
41 #include <linux/sched.h>
42 #include <linux/slab.h>
43 #include <sound/core.h>
44 #include <sound/rawmidi.h>
45 #include <sound/info.h>
46 #include <sound/control.h>
47 #include <sound/minors.h>
48 #include <sound/seq_kernel.h>
49 #include <sound/seq_midi_event.h>
50 #include <sound/seq_virmidi.h>
52 MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
53 MODULE_DESCRIPTION("Virtual Raw MIDI client on Sequencer");
54 MODULE_LICENSE("GPL");
57 * initialize an event record
59 static void snd_virmidi_init_event(struct snd_virmidi *vmidi,
60 struct snd_seq_event *ev)
62 memset(ev, 0, sizeof(*ev));
63 ev->source.port = vmidi->port;
64 switch (vmidi->seq_mode) {
65 case SNDRV_VIRMIDI_SEQ_DISPATCH:
66 ev->dest.client = SNDRV_SEQ_ADDRESS_SUBSCRIBERS;
68 case SNDRV_VIRMIDI_SEQ_ATTACH:
69 /* FIXME: source and destination are same - not good.. */
70 ev->dest.client = vmidi->client;
71 ev->dest.port = vmidi->port;
74 ev->type = SNDRV_SEQ_EVENT_NONE;
78 * decode input event and put to read buffer of each opened file
80 static int snd_virmidi_dev_receive_event(struct snd_virmidi_dev *rdev,
81 struct snd_seq_event *ev)
83 struct snd_virmidi *vmidi;
84 struct list_head *list;
88 read_lock(&rdev->filelist_lock);
89 list_for_each(list, &rdev->filelist) {
90 vmidi = list_entry(list, struct snd_virmidi, list);
93 if (ev->type == SNDRV_SEQ_EVENT_SYSEX) {
94 if ((ev->flags & SNDRV_SEQ_EVENT_LENGTH_MASK) != SNDRV_SEQ_EVENT_LENGTH_VARIABLE)
96 snd_seq_dump_var_event(ev, (snd_seq_dump_func_t)snd_rawmidi_receive, vmidi->substream);
98 len = snd_midi_event_decode(vmidi->parser, msg, sizeof(msg), ev);
100 snd_rawmidi_receive(vmidi->substream, msg, len);
103 read_unlock(&rdev->filelist_lock);
109 * receive an event from the remote virmidi port
111 * for rawmidi inputs, you can call this function from the event
112 * handler of a remote port which is attached to the virmidi via
113 * SNDRV_VIRMIDI_SEQ_ATTACH.
116 int snd_virmidi_receive(struct snd_rawmidi *rmidi, struct snd_seq_event *ev)
118 struct snd_virmidi_dev *rdev;
120 rdev = rmidi->private_data;
121 return snd_virmidi_dev_receive_event(rdev, ev);
126 * event handler of virmidi port
128 static int snd_virmidi_event_input(struct snd_seq_event *ev, int direct,
129 void *private_data, int atomic, int hop)
131 struct snd_virmidi_dev *rdev;
134 if (!(rdev->flags & SNDRV_VIRMIDI_USE))
135 return 0; /* ignored */
136 return snd_virmidi_dev_receive_event(rdev, ev);
140 * trigger rawmidi stream for input
142 static void snd_virmidi_input_trigger(struct snd_rawmidi_substream *substream, int up)
144 struct snd_virmidi *vmidi = substream->runtime->private_data;
154 * trigger rawmidi stream for output
156 static void snd_virmidi_output_trigger(struct snd_rawmidi_substream *substream, int up)
158 struct snd_virmidi *vmidi = substream->runtime->private_data;
160 unsigned char buf[32], *pbuf;
164 if (vmidi->seq_mode == SNDRV_VIRMIDI_SEQ_DISPATCH &&
165 !(vmidi->rdev->flags & SNDRV_VIRMIDI_SUBSCRIBE)) {
166 snd_rawmidi_transmit_ack(substream, substream->runtime->buffer_size - substream->runtime->avail);
167 return; /* ignored */
169 if (vmidi->event.type != SNDRV_SEQ_EVENT_NONE) {
170 if (snd_seq_kernel_client_dispatch(vmidi->client, &vmidi->event, 0, 0) < 0)
172 vmidi->event.type = SNDRV_SEQ_EVENT_NONE;
175 count = snd_rawmidi_transmit_peek(substream, buf, sizeof(buf));
180 res = snd_midi_event_encode(vmidi->parser, pbuf, count, &vmidi->event);
182 snd_midi_event_reset_encode(vmidi->parser);
185 snd_rawmidi_transmit_ack(substream, res);
188 if (vmidi->event.type != SNDRV_SEQ_EVENT_NONE) {
189 if (snd_seq_kernel_client_dispatch(vmidi->client, &vmidi->event, 0, 0) < 0)
191 vmidi->event.type = SNDRV_SEQ_EVENT_NONE;
201 * open rawmidi handle for input
203 static int snd_virmidi_input_open(struct snd_rawmidi_substream *substream)
205 struct snd_virmidi_dev *rdev = substream->rmidi->private_data;
206 struct snd_rawmidi_runtime *runtime = substream->runtime;
207 struct snd_virmidi *vmidi;
210 vmidi = kzalloc(sizeof(*vmidi), GFP_KERNEL);
213 vmidi->substream = substream;
214 if (snd_midi_event_new(0, &vmidi->parser) < 0) {
218 vmidi->seq_mode = rdev->seq_mode;
219 vmidi->client = rdev->client;
220 vmidi->port = rdev->port;
221 runtime->private_data = vmidi;
222 write_lock_irqsave(&rdev->filelist_lock, flags);
223 list_add_tail(&vmidi->list, &rdev->filelist);
224 write_unlock_irqrestore(&rdev->filelist_lock, flags);
230 * open rawmidi handle for output
232 static int snd_virmidi_output_open(struct snd_rawmidi_substream *substream)
234 struct snd_virmidi_dev *rdev = substream->rmidi->private_data;
235 struct snd_rawmidi_runtime *runtime = substream->runtime;
236 struct snd_virmidi *vmidi;
238 vmidi = kzalloc(sizeof(*vmidi), GFP_KERNEL);
241 vmidi->substream = substream;
242 if (snd_midi_event_new(MAX_MIDI_EVENT_BUF, &vmidi->parser) < 0) {
246 vmidi->seq_mode = rdev->seq_mode;
247 vmidi->client = rdev->client;
248 vmidi->port = rdev->port;
249 snd_virmidi_init_event(vmidi, &vmidi->event);
251 runtime->private_data = vmidi;
256 * close rawmidi handle for input
258 static int snd_virmidi_input_close(struct snd_rawmidi_substream *substream)
260 struct snd_virmidi *vmidi = substream->runtime->private_data;
261 snd_midi_event_free(vmidi->parser);
262 list_del(&vmidi->list);
263 substream->runtime->private_data = NULL;
269 * close rawmidi handle for output
271 static int snd_virmidi_output_close(struct snd_rawmidi_substream *substream)
273 struct snd_virmidi *vmidi = substream->runtime->private_data;
274 snd_midi_event_free(vmidi->parser);
275 substream->runtime->private_data = NULL;
281 * subscribe callback - allow output to rawmidi device
283 static int snd_virmidi_subscribe(void *private_data,
284 struct snd_seq_port_subscribe *info)
286 struct snd_virmidi_dev *rdev;
289 if (!try_module_get(rdev->card->module))
291 rdev->flags |= SNDRV_VIRMIDI_SUBSCRIBE;
296 * unsubscribe callback - disallow output to rawmidi device
298 static int snd_virmidi_unsubscribe(void *private_data,
299 struct snd_seq_port_subscribe *info)
301 struct snd_virmidi_dev *rdev;
304 rdev->flags &= ~SNDRV_VIRMIDI_SUBSCRIBE;
305 module_put(rdev->card->module);
311 * use callback - allow input to rawmidi device
313 static int snd_virmidi_use(void *private_data,
314 struct snd_seq_port_subscribe *info)
316 struct snd_virmidi_dev *rdev;
319 if (!try_module_get(rdev->card->module))
321 rdev->flags |= SNDRV_VIRMIDI_USE;
326 * unuse callback - disallow input to rawmidi device
328 static int snd_virmidi_unuse(void *private_data,
329 struct snd_seq_port_subscribe *info)
331 struct snd_virmidi_dev *rdev;
334 rdev->flags &= ~SNDRV_VIRMIDI_USE;
335 module_put(rdev->card->module);
344 static struct snd_rawmidi_ops snd_virmidi_input_ops = {
345 .open = snd_virmidi_input_open,
346 .close = snd_virmidi_input_close,
347 .trigger = snd_virmidi_input_trigger,
350 static struct snd_rawmidi_ops snd_virmidi_output_ops = {
351 .open = snd_virmidi_output_open,
352 .close = snd_virmidi_output_close,
353 .trigger = snd_virmidi_output_trigger,
357 * create a sequencer client and a port
359 static int snd_virmidi_dev_attach_seq(struct snd_virmidi_dev *rdev)
362 struct snd_seq_port_callback pcallbacks;
363 struct snd_seq_port_info *pinfo;
366 if (rdev->client >= 0)
369 pinfo = kmalloc(sizeof(*pinfo), GFP_KERNEL);
375 client = snd_seq_create_kernel_client(rdev->card, rdev->device,
376 "%s %d-%d", rdev->rmidi->name,
383 rdev->client = client;
386 memset(pinfo, 0, sizeof(*pinfo));
387 pinfo->addr.client = client;
388 sprintf(pinfo->name, "VirMIDI %d-%d", rdev->card->number, rdev->device);
389 /* set all capabilities */
390 pinfo->capability |= SNDRV_SEQ_PORT_CAP_WRITE | SNDRV_SEQ_PORT_CAP_SYNC_WRITE | SNDRV_SEQ_PORT_CAP_SUBS_WRITE;
391 pinfo->capability |= SNDRV_SEQ_PORT_CAP_READ | SNDRV_SEQ_PORT_CAP_SYNC_READ | SNDRV_SEQ_PORT_CAP_SUBS_READ;
392 pinfo->capability |= SNDRV_SEQ_PORT_CAP_DUPLEX;
393 pinfo->type = SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC;
394 pinfo->midi_channels = 16;
395 memset(&pcallbacks, 0, sizeof(pcallbacks));
396 pcallbacks.owner = THIS_MODULE;
397 pcallbacks.private_data = rdev;
398 pcallbacks.subscribe = snd_virmidi_subscribe;
399 pcallbacks.unsubscribe = snd_virmidi_unsubscribe;
400 pcallbacks.use = snd_virmidi_use;
401 pcallbacks.unuse = snd_virmidi_unuse;
402 pcallbacks.event_input = snd_virmidi_event_input;
403 pinfo->kernel = &pcallbacks;
404 err = snd_seq_kernel_client_ctl(client, SNDRV_SEQ_IOCTL_CREATE_PORT, pinfo);
406 snd_seq_delete_kernel_client(client);
411 rdev->port = pinfo->addr.port;
412 err = 0; /* success */
421 * release the sequencer client
423 static void snd_virmidi_dev_detach_seq(struct snd_virmidi_dev *rdev)
425 if (rdev->client >= 0) {
426 snd_seq_delete_kernel_client(rdev->client);
432 * register the device
434 static int snd_virmidi_dev_register(struct snd_rawmidi *rmidi)
436 struct snd_virmidi_dev *rdev = rmidi->private_data;
439 switch (rdev->seq_mode) {
440 case SNDRV_VIRMIDI_SEQ_DISPATCH:
441 err = snd_virmidi_dev_attach_seq(rdev);
445 case SNDRV_VIRMIDI_SEQ_ATTACH:
446 if (rdev->client == 0)
448 /* should check presence of port more strictly.. */
451 snd_printk(KERN_ERR "seq_mode is not set: %d\n", rdev->seq_mode);
459 * unregister the device
461 static int snd_virmidi_dev_unregister(struct snd_rawmidi *rmidi)
463 struct snd_virmidi_dev *rdev = rmidi->private_data;
465 if (rdev->seq_mode == SNDRV_VIRMIDI_SEQ_DISPATCH)
466 snd_virmidi_dev_detach_seq(rdev);
473 static struct snd_rawmidi_global_ops snd_virmidi_global_ops = {
474 .dev_register = snd_virmidi_dev_register,
475 .dev_unregister = snd_virmidi_dev_unregister,
481 static void snd_virmidi_free(struct snd_rawmidi *rmidi)
483 struct snd_virmidi_dev *rdev = rmidi->private_data;
488 * create a new device
492 int snd_virmidi_new(struct snd_card *card, int device, struct snd_rawmidi **rrmidi)
494 struct snd_rawmidi *rmidi;
495 struct snd_virmidi_dev *rdev;
499 if ((err = snd_rawmidi_new(card, "VirMidi", device,
500 16, /* may be configurable */
501 16, /* may be configurable */
504 strcpy(rmidi->name, rmidi->id);
505 rdev = kzalloc(sizeof(*rdev), GFP_KERNEL);
507 snd_device_free(card, rmidi);
512 rdev->device = device;
514 rwlock_init(&rdev->filelist_lock);
515 INIT_LIST_HEAD(&rdev->filelist);
516 rdev->seq_mode = SNDRV_VIRMIDI_SEQ_DISPATCH;
517 rmidi->private_data = rdev;
518 rmidi->private_free = snd_virmidi_free;
519 rmidi->ops = &snd_virmidi_global_ops;
520 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_virmidi_input_ops);
521 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_virmidi_output_ops);
522 rmidi->info_flags = SNDRV_RAWMIDI_INFO_INPUT |
523 SNDRV_RAWMIDI_INFO_OUTPUT |
524 SNDRV_RAWMIDI_INFO_DUPLEX;
533 static int __init alsa_virmidi_init(void)
538 static void __exit alsa_virmidi_exit(void)
542 module_init(alsa_virmidi_init)
543 module_exit(alsa_virmidi_exit)
545 EXPORT_SYMBOL(snd_virmidi_new);