blob: ea2113968fe70e14762bb666c2becb31a5030a65 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Virtual Raw MIDI client on Sequencer
3 *
4 * Copyright (c) 2000 by Takashi Iwai <tiwai@suse.de>,
5 * Jaroslav Kysela <perex@perex.cz>
6 *
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.
11 *
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.
16 *
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
20 *
21 */
22
23/*
24 * Virtual Raw MIDI client
25 *
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.
31 *
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.
35 *
36 */
37
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>
51
52MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
53MODULE_DESCRIPTION("Virtual Raw MIDI client on Sequencer");
54MODULE_LICENSE("GPL");
55
56/*
57 * initialize an event record
58 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010059static void snd_virmidi_init_event(struct snd_virmidi *vmidi,
60 struct snd_seq_event *ev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
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;
67 break;
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;
72 break;
73 }
74 ev->type = SNDRV_SEQ_EVENT_NONE;
75}
76
77/*
78 * decode input event and put to read buffer of each opened file
79 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010080static int snd_virmidi_dev_receive_event(struct snd_virmidi_dev *rdev,
81 struct snd_seq_event *ev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010083 struct snd_virmidi *vmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 struct list_head *list;
85 unsigned char msg[4];
86 int len;
87
88 read_lock(&rdev->filelist_lock);
89 list_for_each(list, &rdev->filelist) {
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010090 vmidi = list_entry(list, struct snd_virmidi, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 if (!vmidi->trigger)
92 continue;
93 if (ev->type == SNDRV_SEQ_EVENT_SYSEX) {
94 if ((ev->flags & SNDRV_SEQ_EVENT_LENGTH_MASK) != SNDRV_SEQ_EVENT_LENGTH_VARIABLE)
95 continue;
96 snd_seq_dump_var_event(ev, (snd_seq_dump_func_t)snd_rawmidi_receive, vmidi->substream);
97 } else {
98 len = snd_midi_event_decode(vmidi->parser, msg, sizeof(msg), ev);
99 if (len > 0)
100 snd_rawmidi_receive(vmidi->substream, msg, len);
101 }
102 }
103 read_unlock(&rdev->filelist_lock);
104
105 return 0;
106}
107
108/*
109 * receive an event from the remote virmidi port
110 *
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.
114 */
Adrian Bunk123992f2005-05-18 18:02:04 +0200115#if 0
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100116int snd_virmidi_receive(struct snd_rawmidi *rmidi, struct snd_seq_event *ev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100118 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 rdev = rmidi->private_data;
121 return snd_virmidi_dev_receive_event(rdev, ev);
122}
Adrian Bunk123992f2005-05-18 18:02:04 +0200123#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/*
126 * event handler of virmidi port
127 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100128static int snd_virmidi_event_input(struct snd_seq_event *ev, int direct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 void *private_data, int atomic, int hop)
130{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100131 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 rdev = private_data;
134 if (!(rdev->flags & SNDRV_VIRMIDI_USE))
135 return 0; /* ignored */
136 return snd_virmidi_dev_receive_event(rdev, ev);
137}
138
139/*
140 * trigger rawmidi stream for input
141 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100142static void snd_virmidi_input_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100144 struct snd_virmidi *vmidi = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 if (up) {
147 vmidi->trigger = 1;
148 } else {
149 vmidi->trigger = 0;
150 }
151}
152
153/*
154 * trigger rawmidi stream for output
155 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100156static void snd_virmidi_output_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100158 struct snd_virmidi *vmidi = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 int count, res;
160 unsigned char buf[32], *pbuf;
161
162 if (up) {
163 vmidi->trigger = 1;
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 */
168 }
169 if (vmidi->event.type != SNDRV_SEQ_EVENT_NONE) {
170 if (snd_seq_kernel_client_dispatch(vmidi->client, &vmidi->event, 0, 0) < 0)
171 return;
172 vmidi->event.type = SNDRV_SEQ_EVENT_NONE;
173 }
174 while (1) {
175 count = snd_rawmidi_transmit_peek(substream, buf, sizeof(buf));
176 if (count <= 0)
177 break;
178 pbuf = buf;
179 while (count > 0) {
180 res = snd_midi_event_encode(vmidi->parser, pbuf, count, &vmidi->event);
181 if (res < 0) {
182 snd_midi_event_reset_encode(vmidi->parser);
183 continue;
184 }
185 snd_rawmidi_transmit_ack(substream, res);
186 pbuf += res;
187 count -= res;
188 if (vmidi->event.type != SNDRV_SEQ_EVENT_NONE) {
189 if (snd_seq_kernel_client_dispatch(vmidi->client, &vmidi->event, 0, 0) < 0)
190 return;
191 vmidi->event.type = SNDRV_SEQ_EVENT_NONE;
192 }
193 }
194 }
195 } else {
196 vmidi->trigger = 0;
197 }
198}
199
200/*
201 * open rawmidi handle for input
202 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100203static int snd_virmidi_input_open(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100205 struct snd_virmidi_dev *rdev = substream->rmidi->private_data;
206 struct snd_rawmidi_runtime *runtime = substream->runtime;
207 struct snd_virmidi *vmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 unsigned long flags;
209
Takashi Iwaiecca82b2005-09-09 14:20:49 +0200210 vmidi = kzalloc(sizeof(*vmidi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (vmidi == NULL)
212 return -ENOMEM;
213 vmidi->substream = substream;
214 if (snd_midi_event_new(0, &vmidi->parser) < 0) {
215 kfree(vmidi);
216 return -ENOMEM;
217 }
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);
225 vmidi->rdev = rdev;
226 return 0;
227}
228
229/*
230 * open rawmidi handle for output
231 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100232static int snd_virmidi_output_open(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100234 struct snd_virmidi_dev *rdev = substream->rmidi->private_data;
235 struct snd_rawmidi_runtime *runtime = substream->runtime;
236 struct snd_virmidi *vmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Takashi Iwaiecca82b2005-09-09 14:20:49 +0200238 vmidi = kzalloc(sizeof(*vmidi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (vmidi == NULL)
240 return -ENOMEM;
241 vmidi->substream = substream;
242 if (snd_midi_event_new(MAX_MIDI_EVENT_BUF, &vmidi->parser) < 0) {
243 kfree(vmidi);
244 return -ENOMEM;
245 }
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);
250 vmidi->rdev = rdev;
251 runtime->private_data = vmidi;
252 return 0;
253}
254
255/*
256 * close rawmidi handle for input
257 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100258static int snd_virmidi_input_close(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100260 struct snd_virmidi *vmidi = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 snd_midi_event_free(vmidi->parser);
262 list_del(&vmidi->list);
263 substream->runtime->private_data = NULL;
264 kfree(vmidi);
265 return 0;
266}
267
268/*
269 * close rawmidi handle for output
270 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100271static int snd_virmidi_output_close(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100273 struct snd_virmidi *vmidi = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 snd_midi_event_free(vmidi->parser);
275 substream->runtime->private_data = NULL;
276 kfree(vmidi);
277 return 0;
278}
279
280/*
281 * subscribe callback - allow output to rawmidi device
282 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100283static int snd_virmidi_subscribe(void *private_data,
284 struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100286 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 rdev = private_data;
289 if (!try_module_get(rdev->card->module))
290 return -EFAULT;
291 rdev->flags |= SNDRV_VIRMIDI_SUBSCRIBE;
292 return 0;
293}
294
295/*
296 * unsubscribe callback - disallow output to rawmidi device
297 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100298static int snd_virmidi_unsubscribe(void *private_data,
299 struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100301 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 rdev = private_data;
304 rdev->flags &= ~SNDRV_VIRMIDI_SUBSCRIBE;
305 module_put(rdev->card->module);
306 return 0;
307}
308
309
310/*
311 * use callback - allow input to rawmidi device
312 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100313static int snd_virmidi_use(void *private_data,
314 struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100316 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 rdev = private_data;
319 if (!try_module_get(rdev->card->module))
320 return -EFAULT;
321 rdev->flags |= SNDRV_VIRMIDI_USE;
322 return 0;
323}
324
325/*
326 * unuse callback - disallow input to rawmidi device
327 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100328static int snd_virmidi_unuse(void *private_data,
329 struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100331 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 rdev = private_data;
334 rdev->flags &= ~SNDRV_VIRMIDI_USE;
335 module_put(rdev->card->module);
336 return 0;
337}
338
339
340/*
341 * Register functions
342 */
343
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100344static struct snd_rawmidi_ops snd_virmidi_input_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 .open = snd_virmidi_input_open,
346 .close = snd_virmidi_input_close,
347 .trigger = snd_virmidi_input_trigger,
348};
349
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100350static struct snd_rawmidi_ops snd_virmidi_output_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 .open = snd_virmidi_output_open,
352 .close = snd_virmidi_output_close,
353 .trigger = snd_virmidi_output_trigger,
354};
355
356/*
357 * create a sequencer client and a port
358 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100359static int snd_virmidi_dev_attach_seq(struct snd_virmidi_dev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 int client;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100362 struct snd_seq_client_callback callbacks;
363 struct snd_seq_port_callback pcallbacks;
364 struct snd_seq_client_info *info;
365 struct snd_seq_port_info *pinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 int err;
367
368 if (rdev->client >= 0)
369 return 0;
370
371 info = kmalloc(sizeof(*info), GFP_KERNEL);
372 pinfo = kmalloc(sizeof(*pinfo), GFP_KERNEL);
373 if (! info || ! pinfo) {
374 err = -ENOMEM;
375 goto __error;
376 }
377
378 memset(&callbacks, 0, sizeof(callbacks));
379 callbacks.private_data = rdev;
380 callbacks.allow_input = 1;
381 callbacks.allow_output = 1;
382 client = snd_seq_create_kernel_client(rdev->card, rdev->device, &callbacks);
383 if (client < 0) {
384 err = client;
385 goto __error;
386 }
387 rdev->client = client;
388
389 /* set client name */
390 memset(info, 0, sizeof(*info));
391 info->client = client;
392 info->type = KERNEL_CLIENT;
393 sprintf(info->name, "%s %d-%d", rdev->rmidi->name, rdev->card->number, rdev->device);
Clemens Ladisch22e07322005-04-08 08:25:23 +0200394 snd_seq_kernel_client_ctl(client, SNDRV_SEQ_IOCTL_SET_CLIENT_INFO, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 /* create a port */
397 memset(pinfo, 0, sizeof(*pinfo));
398 pinfo->addr.client = client;
399 sprintf(pinfo->name, "VirMIDI %d-%d", rdev->card->number, rdev->device);
400 /* set all capabilities */
401 pinfo->capability |= SNDRV_SEQ_PORT_CAP_WRITE | SNDRV_SEQ_PORT_CAP_SYNC_WRITE | SNDRV_SEQ_PORT_CAP_SUBS_WRITE;
402 pinfo->capability |= SNDRV_SEQ_PORT_CAP_READ | SNDRV_SEQ_PORT_CAP_SYNC_READ | SNDRV_SEQ_PORT_CAP_SUBS_READ;
403 pinfo->capability |= SNDRV_SEQ_PORT_CAP_DUPLEX;
404 pinfo->type = SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC;
405 pinfo->midi_channels = 16;
406 memset(&pcallbacks, 0, sizeof(pcallbacks));
407 pcallbacks.owner = THIS_MODULE;
408 pcallbacks.private_data = rdev;
409 pcallbacks.subscribe = snd_virmidi_subscribe;
410 pcallbacks.unsubscribe = snd_virmidi_unsubscribe;
411 pcallbacks.use = snd_virmidi_use;
412 pcallbacks.unuse = snd_virmidi_unuse;
413 pcallbacks.event_input = snd_virmidi_event_input;
414 pinfo->kernel = &pcallbacks;
Clemens Ladisch0aa0d382005-04-06 09:43:59 +0200415 err = snd_seq_kernel_client_ctl(client, SNDRV_SEQ_IOCTL_CREATE_PORT, pinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (err < 0) {
417 snd_seq_delete_kernel_client(client);
418 rdev->client = -1;
419 goto __error;
420 }
421
422 rdev->port = pinfo->addr.port;
423 err = 0; /* success */
424
425 __error:
426 kfree(info);
427 kfree(pinfo);
428 return err;
429}
430
431
432/*
433 * release the sequencer client
434 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100435static void snd_virmidi_dev_detach_seq(struct snd_virmidi_dev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 if (rdev->client >= 0) {
438 snd_seq_delete_kernel_client(rdev->client);
439 rdev->client = -1;
440 }
441}
442
443/*
444 * register the device
445 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100446static int snd_virmidi_dev_register(struct snd_rawmidi *rmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100448 struct snd_virmidi_dev *rdev = rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 int err;
450
451 switch (rdev->seq_mode) {
452 case SNDRV_VIRMIDI_SEQ_DISPATCH:
453 err = snd_virmidi_dev_attach_seq(rdev);
454 if (err < 0)
455 return err;
456 break;
457 case SNDRV_VIRMIDI_SEQ_ATTACH:
458 if (rdev->client == 0)
459 return -EINVAL;
460 /* should check presence of port more strictly.. */
461 break;
462 default:
463 snd_printk(KERN_ERR "seq_mode is not set: %d\n", rdev->seq_mode);
464 return -EINVAL;
465 }
466 return 0;
467}
468
469
470/*
471 * unregister the device
472 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100473static int snd_virmidi_dev_unregister(struct snd_rawmidi *rmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100475 struct snd_virmidi_dev *rdev = rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 if (rdev->seq_mode == SNDRV_VIRMIDI_SEQ_DISPATCH)
478 snd_virmidi_dev_detach_seq(rdev);
479 return 0;
480}
481
482/*
483 *
484 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100485static struct snd_rawmidi_global_ops snd_virmidi_global_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 .dev_register = snd_virmidi_dev_register,
487 .dev_unregister = snd_virmidi_dev_unregister,
488};
489
490/*
491 * free device
492 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100493static void snd_virmidi_free(struct snd_rawmidi *rmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100495 struct snd_virmidi_dev *rdev = rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 kfree(rdev);
497}
498
499/*
500 * create a new device
501 *
502 */
503/* exported */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100504int snd_virmidi_new(struct snd_card *card, int device, struct snd_rawmidi **rrmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100506 struct snd_rawmidi *rmidi;
507 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 int err;
509
510 *rrmidi = NULL;
511 if ((err = snd_rawmidi_new(card, "VirMidi", device,
512 16, /* may be configurable */
513 16, /* may be configurable */
514 &rmidi)) < 0)
515 return err;
516 strcpy(rmidi->name, rmidi->id);
Takashi Iwaiecca82b2005-09-09 14:20:49 +0200517 rdev = kzalloc(sizeof(*rdev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (rdev == NULL) {
519 snd_device_free(card, rmidi);
520 return -ENOMEM;
521 }
522 rdev->card = card;
523 rdev->rmidi = rmidi;
524 rdev->device = device;
525 rdev->client = -1;
526 rwlock_init(&rdev->filelist_lock);
527 INIT_LIST_HEAD(&rdev->filelist);
528 rdev->seq_mode = SNDRV_VIRMIDI_SEQ_DISPATCH;
529 rmidi->private_data = rdev;
530 rmidi->private_free = snd_virmidi_free;
531 rmidi->ops = &snd_virmidi_global_ops;
532 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_virmidi_input_ops);
533 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_virmidi_output_ops);
534 rmidi->info_flags = SNDRV_RAWMIDI_INFO_INPUT |
535 SNDRV_RAWMIDI_INFO_OUTPUT |
536 SNDRV_RAWMIDI_INFO_DUPLEX;
537 *rrmidi = rmidi;
538 return 0;
539}
540
541/*
542 * ENTRY functions
543 */
544
545static int __init alsa_virmidi_init(void)
546{
547 return 0;
548}
549
550static void __exit alsa_virmidi_exit(void)
551{
552}
553
554module_init(alsa_virmidi_init)
555module_exit(alsa_virmidi_exit)
556
557EXPORT_SYMBOL(snd_virmidi_new);