blob: 1ebb34656241470af4fc08debd862933e9a81c38 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/init.h>
39#include <linux/wait.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040040#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#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>
50
51MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
52MODULE_DESCRIPTION("Virtual Raw MIDI client on Sequencer");
53MODULE_LICENSE("GPL");
54
55/*
56 * initialize an event record
57 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010058static void snd_virmidi_init_event(struct snd_virmidi *vmidi,
59 struct snd_seq_event *ev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
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;
66 break;
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;
71 break;
72 }
73 ev->type = SNDRV_SEQ_EVENT_NONE;
74}
75
76/*
77 * decode input event and put to read buffer of each opened file
78 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010079static int snd_virmidi_dev_receive_event(struct snd_virmidi_dev *rdev,
Takashi Iwai6571ce82017-10-09 10:02:56 +020080 struct snd_seq_event *ev,
81 bool atomic)
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 unsigned char msg[4];
85 int len;
86
Takashi Iwai6571ce82017-10-09 10:02:56 +020087 if (atomic)
88 read_lock(&rdev->filelist_lock);
89 else
90 down_read(&rdev->filelist_sem);
Johannes Berg9244b2c2006-10-05 16:02:22 +020091 list_for_each_entry(vmidi, &rdev->filelist, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (!vmidi->trigger)
93 continue;
94 if (ev->type == SNDRV_SEQ_EVENT_SYSEX) {
95 if ((ev->flags & SNDRV_SEQ_EVENT_LENGTH_MASK) != SNDRV_SEQ_EVENT_LENGTH_VARIABLE)
96 continue;
97 snd_seq_dump_var_event(ev, (snd_seq_dump_func_t)snd_rawmidi_receive, vmidi->substream);
98 } else {
99 len = snd_midi_event_decode(vmidi->parser, msg, sizeof(msg), ev);
100 if (len > 0)
101 snd_rawmidi_receive(vmidi->substream, msg, len);
102 }
103 }
Takashi Iwai6571ce82017-10-09 10:02:56 +0200104 if (atomic)
105 read_unlock(&rdev->filelist_lock);
106 else
107 up_read(&rdev->filelist_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 return 0;
110}
111
112/*
113 * receive an event from the remote virmidi port
114 *
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.
118 */
Adrian Bunk123992f2005-05-18 18:02:04 +0200119#if 0
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100120int snd_virmidi_receive(struct snd_rawmidi *rmidi, struct snd_seq_event *ev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100122 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 rdev = rmidi->private_data;
Takashi Iwai6571ce82017-10-09 10:02:56 +0200125 return snd_virmidi_dev_receive_event(rdev, ev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
Adrian Bunk123992f2005-05-18 18:02:04 +0200127#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/*
130 * event handler of virmidi port
131 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100132static int snd_virmidi_event_input(struct snd_seq_event *ev, int direct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 void *private_data, int atomic, int hop)
134{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100135 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 rdev = private_data;
138 if (!(rdev->flags & SNDRV_VIRMIDI_USE))
139 return 0; /* ignored */
Takashi Iwai6571ce82017-10-09 10:02:56 +0200140 return snd_virmidi_dev_receive_event(rdev, ev, atomic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
143/*
144 * trigger rawmidi stream for input
145 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100146static void snd_virmidi_input_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100148 struct snd_virmidi *vmidi = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 if (up) {
151 vmidi->trigger = 1;
152 } else {
153 vmidi->trigger = 0;
154 }
155}
156
157/*
158 * trigger rawmidi stream for output
159 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100160static void snd_virmidi_output_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100162 struct snd_virmidi *vmidi = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 int count, res;
164 unsigned char buf[32], *pbuf;
Takashi Iwai06ab3002016-01-31 11:57:41 +0100165 unsigned long flags;
Takashi Iwaib1e4b1c2018-07-26 14:27:59 +0200166 bool check_resched = !in_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 if (up) {
169 vmidi->trigger = 1;
170 if (vmidi->seq_mode == SNDRV_VIRMIDI_SEQ_DISPATCH &&
171 !(vmidi->rdev->flags & SNDRV_VIRMIDI_SUBSCRIBE)) {
Takashi Iwai06ab3002016-01-31 11:57:41 +0100172 while (snd_rawmidi_transmit(substream, buf,
173 sizeof(buf)) > 0) {
174 /* ignored */
175 }
176 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
Takashi Iwai95518572018-04-26 09:17:45 +0200178 spin_lock_irqsave(&substream->runtime->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (vmidi->event.type != SNDRV_SEQ_EVENT_NONE) {
Takashi Iwai62c5549e2006-02-22 17:14:34 +0100180 if (snd_seq_kernel_client_dispatch(vmidi->client, &vmidi->event, in_atomic(), 0) < 0)
Takashi Iwai95518572018-04-26 09:17:45 +0200181 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 vmidi->event.type = SNDRV_SEQ_EVENT_NONE;
183 }
184 while (1) {
Takashi Iwai06ab3002016-01-31 11:57:41 +0100185 count = __snd_rawmidi_transmit_peek(substream, buf, sizeof(buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (count <= 0)
187 break;
188 pbuf = buf;
189 while (count > 0) {
190 res = snd_midi_event_encode(vmidi->parser, pbuf, count, &vmidi->event);
191 if (res < 0) {
192 snd_midi_event_reset_encode(vmidi->parser);
193 continue;
194 }
Takashi Iwai06ab3002016-01-31 11:57:41 +0100195 __snd_rawmidi_transmit_ack(substream, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 pbuf += res;
197 count -= res;
198 if (vmidi->event.type != SNDRV_SEQ_EVENT_NONE) {
Takashi Iwai62c5549e2006-02-22 17:14:34 +0100199 if (snd_seq_kernel_client_dispatch(vmidi->client, &vmidi->event, in_atomic(), 0) < 0)
Takashi Iwai06ab3002016-01-31 11:57:41 +0100200 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 vmidi->event.type = SNDRV_SEQ_EVENT_NONE;
202 }
203 }
Takashi Iwaib1e4b1c2018-07-26 14:27:59 +0200204 if (!check_resched)
205 continue;
206 /* do temporary unlock & cond_resched() for avoiding
207 * CPU soft lockup, which may happen via a write from
208 * a huge rawmidi buffer
209 */
210 spin_unlock_irqrestore(&substream->runtime->lock, flags);
211 cond_resched();
212 spin_lock_irqsave(&substream->runtime->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
Takashi Iwai06ab3002016-01-31 11:57:41 +0100214 out:
215 spin_unlock_irqrestore(&substream->runtime->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 } else {
217 vmidi->trigger = 0;
218 }
219}
220
221/*
222 * open rawmidi handle for input
223 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100224static int snd_virmidi_input_open(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100226 struct snd_virmidi_dev *rdev = substream->rmidi->private_data;
227 struct snd_rawmidi_runtime *runtime = substream->runtime;
228 struct snd_virmidi *vmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Takashi Iwaiecca82b2005-09-09 14:20:49 +0200230 vmidi = kzalloc(sizeof(*vmidi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (vmidi == NULL)
232 return -ENOMEM;
233 vmidi->substream = substream;
234 if (snd_midi_event_new(0, &vmidi->parser) < 0) {
235 kfree(vmidi);
236 return -ENOMEM;
237 }
238 vmidi->seq_mode = rdev->seq_mode;
239 vmidi->client = rdev->client;
240 vmidi->port = rdev->port;
241 runtime->private_data = vmidi;
Takashi Iwai6571ce82017-10-09 10:02:56 +0200242 down_write(&rdev->filelist_sem);
243 write_lock_irq(&rdev->filelist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 list_add_tail(&vmidi->list, &rdev->filelist);
Takashi Iwai6571ce82017-10-09 10:02:56 +0200245 write_unlock_irq(&rdev->filelist_lock);
246 up_write(&rdev->filelist_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 vmidi->rdev = rdev;
248 return 0;
249}
250
251/*
252 * open rawmidi handle for output
253 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100254static int snd_virmidi_output_open(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100256 struct snd_virmidi_dev *rdev = substream->rmidi->private_data;
257 struct snd_rawmidi_runtime *runtime = substream->runtime;
258 struct snd_virmidi *vmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Takashi Iwaiecca82b2005-09-09 14:20:49 +0200260 vmidi = kzalloc(sizeof(*vmidi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (vmidi == NULL)
262 return -ENOMEM;
263 vmidi->substream = substream;
264 if (snd_midi_event_new(MAX_MIDI_EVENT_BUF, &vmidi->parser) < 0) {
265 kfree(vmidi);
266 return -ENOMEM;
267 }
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);
272 vmidi->rdev = rdev;
273 runtime->private_data = vmidi;
274 return 0;
275}
276
277/*
278 * close rawmidi handle for input
279 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100280static int snd_virmidi_input_close(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Takashi Iwai2d1b5c02016-02-01 12:06:42 +0100282 struct snd_virmidi_dev *rdev = substream->rmidi->private_data;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100283 struct snd_virmidi *vmidi = substream->runtime->private_data;
Takashi Iwai2d1b5c02016-02-01 12:06:42 +0100284
Takashi Iwai6571ce82017-10-09 10:02:56 +0200285 down_write(&rdev->filelist_sem);
Takashi Iwai2d1b5c02016-02-01 12:06:42 +0100286 write_lock_irq(&rdev->filelist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 list_del(&vmidi->list);
Takashi Iwai2d1b5c02016-02-01 12:06:42 +0100288 write_unlock_irq(&rdev->filelist_lock);
Takashi Iwai6571ce82017-10-09 10:02:56 +0200289 up_write(&rdev->filelist_sem);
Takashi Iwai2d1b5c02016-02-01 12:06:42 +0100290 snd_midi_event_free(vmidi->parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 substream->runtime->private_data = NULL;
292 kfree(vmidi);
293 return 0;
294}
295
296/*
297 * close rawmidi handle for output
298 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100299static int snd_virmidi_output_close(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100301 struct snd_virmidi *vmidi = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 snd_midi_event_free(vmidi->parser);
303 substream->runtime->private_data = NULL;
304 kfree(vmidi);
305 return 0;
306}
307
308/*
309 * subscribe callback - allow output to rawmidi device
310 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100311static int snd_virmidi_subscribe(void *private_data,
312 struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100314 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 rdev = private_data;
317 if (!try_module_get(rdev->card->module))
318 return -EFAULT;
319 rdev->flags |= SNDRV_VIRMIDI_SUBSCRIBE;
320 return 0;
321}
322
323/*
324 * unsubscribe callback - disallow output to rawmidi device
325 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100326static int snd_virmidi_unsubscribe(void *private_data,
327 struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100329 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 rdev = private_data;
332 rdev->flags &= ~SNDRV_VIRMIDI_SUBSCRIBE;
333 module_put(rdev->card->module);
334 return 0;
335}
336
337
338/*
339 * use callback - allow input to rawmidi device
340 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100341static int snd_virmidi_use(void *private_data,
342 struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100344 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 rdev = private_data;
347 if (!try_module_get(rdev->card->module))
348 return -EFAULT;
349 rdev->flags |= SNDRV_VIRMIDI_USE;
350 return 0;
351}
352
353/*
354 * unuse callback - disallow input to rawmidi device
355 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100356static int snd_virmidi_unuse(void *private_data,
357 struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100359 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 rdev = private_data;
362 rdev->flags &= ~SNDRV_VIRMIDI_USE;
363 module_put(rdev->card->module);
364 return 0;
365}
366
367
368/*
369 * Register functions
370 */
371
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100372static struct snd_rawmidi_ops snd_virmidi_input_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 .open = snd_virmidi_input_open,
374 .close = snd_virmidi_input_close,
375 .trigger = snd_virmidi_input_trigger,
376};
377
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100378static struct snd_rawmidi_ops snd_virmidi_output_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 .open = snd_virmidi_output_open,
380 .close = snd_virmidi_output_close,
381 .trigger = snd_virmidi_output_trigger,
382};
383
384/*
385 * create a sequencer client and a port
386 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100387static int snd_virmidi_dev_attach_seq(struct snd_virmidi_dev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 int client;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100390 struct snd_seq_port_callback pcallbacks;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100391 struct snd_seq_port_info *pinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 int err;
393
394 if (rdev->client >= 0)
395 return 0;
396
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700397 pinfo = kzalloc(sizeof(*pinfo), GFP_KERNEL);
Clemens Ladisch7b6d9242005-12-12 09:33:37 +0100398 if (!pinfo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 err = -ENOMEM;
400 goto __error;
401 }
402
Clemens Ladisch7b6d9242005-12-12 09:33:37 +0100403 client = snd_seq_create_kernel_client(rdev->card, rdev->device,
404 "%s %d-%d", rdev->rmidi->name,
405 rdev->card->number,
406 rdev->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (client < 0) {
408 err = client;
409 goto __error;
410 }
411 rdev->client = client;
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* create a port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 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;
Clemens Ladisch450047a2006-05-02 16:08:41 +0200420 pinfo->type = SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC
421 | SNDRV_SEQ_PORT_TYPE_SOFTWARE
422 | SNDRV_SEQ_PORT_TYPE_PORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 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;
Clemens Ladisch0aa0d382005-04-06 09:43:59 +0200433 err = snd_seq_kernel_client_ctl(client, SNDRV_SEQ_IOCTL_CREATE_PORT, pinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (err < 0) {
435 snd_seq_delete_kernel_client(client);
436 rdev->client = -1;
437 goto __error;
438 }
439
440 rdev->port = pinfo->addr.port;
441 err = 0; /* success */
442
443 __error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 kfree(pinfo);
445 return err;
446}
447
448
449/*
450 * release the sequencer client
451 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100452static void snd_virmidi_dev_detach_seq(struct snd_virmidi_dev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 if (rdev->client >= 0) {
455 snd_seq_delete_kernel_client(rdev->client);
456 rdev->client = -1;
457 }
458}
459
460/*
461 * register the device
462 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100463static int snd_virmidi_dev_register(struct snd_rawmidi *rmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100465 struct snd_virmidi_dev *rdev = rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 int err;
467
468 switch (rdev->seq_mode) {
469 case SNDRV_VIRMIDI_SEQ_DISPATCH:
470 err = snd_virmidi_dev_attach_seq(rdev);
471 if (err < 0)
472 return err;
473 break;
474 case SNDRV_VIRMIDI_SEQ_ATTACH:
475 if (rdev->client == 0)
476 return -EINVAL;
477 /* should check presence of port more strictly.. */
478 break;
479 default:
Takashi Iwai04cc79a2014-02-04 18:24:34 +0100480 pr_err("ALSA: seq_virmidi: seq_mode is not set: %d\n", rdev->seq_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return -EINVAL;
482 }
483 return 0;
484}
485
486
487/*
488 * unregister the device
489 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100490static int snd_virmidi_dev_unregister(struct snd_rawmidi *rmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100492 struct snd_virmidi_dev *rdev = rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 if (rdev->seq_mode == SNDRV_VIRMIDI_SEQ_DISPATCH)
495 snd_virmidi_dev_detach_seq(rdev);
496 return 0;
497}
498
499/*
500 *
501 */
Julia Lawallefdbe3c2015-11-22 08:55:07 +0100502static const struct snd_rawmidi_global_ops snd_virmidi_global_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 .dev_register = snd_virmidi_dev_register,
504 .dev_unregister = snd_virmidi_dev_unregister,
505};
506
507/*
508 * free device
509 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100510static void snd_virmidi_free(struct snd_rawmidi *rmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100512 struct snd_virmidi_dev *rdev = rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 kfree(rdev);
514}
515
516/*
517 * create a new device
518 *
519 */
520/* exported */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100521int snd_virmidi_new(struct snd_card *card, int device, struct snd_rawmidi **rrmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100523 struct snd_rawmidi *rmidi;
524 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 int err;
526
527 *rrmidi = NULL;
528 if ((err = snd_rawmidi_new(card, "VirMidi", device,
529 16, /* may be configurable */
530 16, /* may be configurable */
531 &rmidi)) < 0)
532 return err;
533 strcpy(rmidi->name, rmidi->id);
Takashi Iwaiecca82b2005-09-09 14:20:49 +0200534 rdev = kzalloc(sizeof(*rdev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (rdev == NULL) {
536 snd_device_free(card, rmidi);
537 return -ENOMEM;
538 }
539 rdev->card = card;
540 rdev->rmidi = rmidi;
541 rdev->device = device;
542 rdev->client = -1;
Takashi Iwai6571ce82017-10-09 10:02:56 +0200543 init_rwsem(&rdev->filelist_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 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;
555 *rrmidi = rmidi;
556 return 0;
557}
558
559/*
560 * ENTRY functions
561 */
562
563static int __init alsa_virmidi_init(void)
564{
565 return 0;
566}
567
568static void __exit alsa_virmidi_exit(void)
569{
570}
571
572module_init(alsa_virmidi_init)
573module_exit(alsa_virmidi_exit)
574
575EXPORT_SYMBOL(snd_virmidi_new);