blob: 4d26146a62ccd8fd2fff0c73ea25507ff4a6550f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic MIDI synth driver for ALSA sequencer
3 * Copyright (c) 1998 by Frank van de Pol <fvdpol@coil.demon.nl>
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02004 * Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22/*
23Possible options for midisynth module:
24 - automatic opening of midi ports on first received event or subscription
25 (close will be performed when client leaves)
26*/
27
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/init.h>
30#include <linux/slab.h>
31#include <linux/errno.h>
32#include <linux/string.h>
33#include <linux/moduleparam.h>
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010034#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <sound/core.h>
36#include <sound/rawmidi.h>
37#include <sound/seq_kernel.h>
38#include <sound/seq_device.h>
39#include <sound/seq_midi_event.h>
40#include <sound/initval.h>
41
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020042MODULE_AUTHOR("Frank van de Pol <fvdpol@coil.demon.nl>, Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070043MODULE_DESCRIPTION("Advanced Linux Sound Architecture sequencer MIDI synth.");
44MODULE_LICENSE("GPL");
45static int output_buffer_size = PAGE_SIZE;
46module_param(output_buffer_size, int, 0644);
47MODULE_PARM_DESC(output_buffer_size, "Output buffer size in bytes.");
48static int input_buffer_size = PAGE_SIZE;
49module_param(input_buffer_size, int, 0644);
50MODULE_PARM_DESC(input_buffer_size, "Input buffer size in bytes.");
51
52/* data for this midi synth driver */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010053struct seq_midisynth {
54 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 int device;
56 int subdevice;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010057 struct snd_rawmidi_file input_rfile;
58 struct snd_rawmidi_file output_rfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 int seq_client;
60 int seq_port;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010061 struct snd_midi_event *parser;
62};
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010064struct seq_midisynth_client {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 int seq_client;
66 int num_ports;
67 int ports_per_device[SNDRV_RAWMIDI_DEVICES];
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010068 struct seq_midisynth *ports[SNDRV_RAWMIDI_DEVICES];
69};
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010071static struct seq_midisynth_client *synths[SNDRV_CARDS];
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010072static DEFINE_MUTEX(register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/* handle rawmidi input event (MIDI v1.0 stream) */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010075static void snd_midi_input_event(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010077 struct snd_rawmidi_runtime *runtime;
78 struct seq_midisynth *msynth;
79 struct snd_seq_event ev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 char buf[16], *pbuf;
81 long res, count;
82
83 if (substream == NULL)
84 return;
85 runtime = substream->runtime;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010086 msynth = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 if (msynth == NULL)
88 return;
89 memset(&ev, 0, sizeof(ev));
90 while (runtime->avail > 0) {
91 res = snd_rawmidi_kernel_read(substream, buf, sizeof(buf));
92 if (res <= 0)
93 continue;
94 if (msynth->parser == NULL)
95 continue;
96 pbuf = buf;
97 while (res > 0) {
98 count = snd_midi_event_encode(msynth->parser, pbuf, res, &ev);
99 if (count < 0)
100 break;
101 pbuf += count;
102 res -= count;
103 if (ev.type != SNDRV_SEQ_EVENT_NONE) {
104 ev.source.port = msynth->seq_port;
105 ev.dest.client = SNDRV_SEQ_ADDRESS_SUBSCRIBERS;
106 snd_seq_kernel_client_dispatch(msynth->seq_client, &ev, 1, 0);
107 /* clear event and reset header */
108 memset(&ev, 0, sizeof(ev));
109 }
110 }
111 }
112}
113
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100114static int dump_midi(struct snd_rawmidi_substream *substream, const char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100116 struct snd_rawmidi_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 int tmp;
118
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200119 if (snd_BUG_ON(!substream || !buf))
120 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 runtime = substream->runtime;
122 if ((tmp = runtime->avail) < count) {
123 snd_printd("warning, output event was lost (count = %i, available = %i)\n", count, tmp);
124 return -ENOMEM;
125 }
126 if (snd_rawmidi_kernel_write(substream, buf, count) < count)
127 return -EINVAL;
128 return 0;
129}
130
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100131static int event_process_midi(struct snd_seq_event *ev, int direct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 void *private_data, int atomic, int hop)
133{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100134 struct seq_midisynth *msynth = private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 unsigned char msg[10]; /* buffer for constructing midi messages */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100136 struct snd_rawmidi_substream *substream;
Clemens Ladischd06e4c42005-07-21 08:01:22 +0200137 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200139 if (snd_BUG_ON(!msynth))
140 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 substream = msynth->output_rfile.output;
142 if (substream == NULL)
143 return -ENODEV;
144 if (ev->type == SNDRV_SEQ_EVENT_SYSEX) { /* special case, to save space */
145 if ((ev->flags & SNDRV_SEQ_EVENT_LENGTH_MASK) != SNDRV_SEQ_EVENT_LENGTH_VARIABLE) {
146 /* invalid event */
147 snd_printd("seq_midi: invalid sysex event flags = 0x%x\n", ev->flags);
148 return 0;
149 }
Clemens Ladischd06e4c42005-07-21 08:01:22 +0200150 snd_seq_dump_var_event(ev, (snd_seq_dump_func_t)dump_midi, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 snd_midi_event_reset_decode(msynth->parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 } else {
153 if (msynth->parser == NULL)
154 return -EIO;
Clemens Ladischd06e4c42005-07-21 08:01:22 +0200155 len = snd_midi_event_decode(msynth->parser, msg, sizeof(msg), ev);
156 if (len < 0)
157 return 0;
158 if (dump_midi(substream, msg, len) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 snd_midi_event_reset_decode(msynth->parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161 return 0;
162}
163
164
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100165static int snd_seq_midisynth_new(struct seq_midisynth *msynth,
166 struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 int device,
168 int subdevice)
169{
170 if (snd_midi_event_new(MAX_MIDI_EVENT_BUF, &msynth->parser) < 0)
171 return -ENOMEM;
172 msynth->card = card;
173 msynth->device = device;
174 msynth->subdevice = subdevice;
175 return 0;
176}
177
178/* open associated midi device for input */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100179static int midisynth_subscribe(void *private_data, struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 int err;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100182 struct seq_midisynth *msynth = private_data;
183 struct snd_rawmidi_runtime *runtime;
184 struct snd_rawmidi_params params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /* open midi port */
Clemens Ladischf87135f2005-11-20 14:06:59 +0100187 if ((err = snd_rawmidi_kernel_open(msynth->card, msynth->device,
188 msynth->subdevice,
189 SNDRV_RAWMIDI_LFLG_INPUT,
190 &msynth->input_rfile)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 snd_printd("midi input open failed!!!\n");
192 return err;
193 }
194 runtime = msynth->input_rfile.input->runtime;
195 memset(&params, 0, sizeof(params));
196 params.avail_min = 1;
197 params.buffer_size = input_buffer_size;
198 if ((err = snd_rawmidi_input_params(msynth->input_rfile.input, &params)) < 0) {
199 snd_rawmidi_kernel_release(&msynth->input_rfile);
200 return err;
201 }
202 snd_midi_event_reset_encode(msynth->parser);
203 runtime->event = snd_midi_input_event;
204 runtime->private_data = msynth;
205 snd_rawmidi_kernel_read(msynth->input_rfile.input, NULL, 0);
206 return 0;
207}
208
209/* close associated midi device for input */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100210static int midisynth_unsubscribe(void *private_data, struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 int err;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100213 struct seq_midisynth *msynth = private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200215 if (snd_BUG_ON(!msynth->input_rfile.input))
216 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 err = snd_rawmidi_kernel_release(&msynth->input_rfile);
218 return err;
219}
220
221/* open associated midi device for output */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100222static int midisynth_use(void *private_data, struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 int err;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100225 struct seq_midisynth *msynth = private_data;
226 struct snd_rawmidi_params params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /* open midi port */
Clemens Ladischf87135f2005-11-20 14:06:59 +0100229 if ((err = snd_rawmidi_kernel_open(msynth->card, msynth->device,
230 msynth->subdevice,
231 SNDRV_RAWMIDI_LFLG_OUTPUT,
232 &msynth->output_rfile)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 snd_printd("midi output open failed!!!\n");
234 return err;
235 }
236 memset(&params, 0, sizeof(params));
237 params.avail_min = 1;
238 params.buffer_size = output_buffer_size;
239 if ((err = snd_rawmidi_output_params(msynth->output_rfile.output, &params)) < 0) {
240 snd_rawmidi_kernel_release(&msynth->output_rfile);
241 return err;
242 }
243 snd_midi_event_reset_decode(msynth->parser);
244 return 0;
245}
246
247/* close associated midi device for output */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100248static int midisynth_unuse(void *private_data, struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100250 struct seq_midisynth *msynth = private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 unsigned char buf = 0xff; /* MIDI reset */
252
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200253 if (snd_BUG_ON(!msynth->output_rfile.output))
254 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 /* sending single MIDI reset message to shut the device up */
256 snd_rawmidi_kernel_write(msynth->output_rfile.output, &buf, 1);
257 snd_rawmidi_drain_output(msynth->output_rfile.output);
258 return snd_rawmidi_kernel_release(&msynth->output_rfile);
259}
260
261/* delete given midi synth port */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100262static void snd_seq_midisynth_delete(struct seq_midisynth *msynth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 if (msynth == NULL)
265 return;
266
267 if (msynth->seq_client > 0) {
268 /* delete port */
269 snd_seq_event_port_detach(msynth->seq_client, msynth->seq_port);
270 }
271
272 if (msynth->parser)
273 snd_midi_event_free(msynth->parser);
274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/* register new midi synth port */
277static int
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100278snd_seq_midisynth_register_port(struct snd_seq_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100280 struct seq_midisynth_client *client;
281 struct seq_midisynth *msynth, *ms;
282 struct snd_seq_port_info *port;
283 struct snd_rawmidi_info *info;
Clemens Ladischa7b928a2006-05-02 16:22:12 +0200284 struct snd_rawmidi *rmidi = dev->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 int newclient = 0;
286 unsigned int p, ports;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100287 struct snd_seq_port_callback pcallbacks;
288 struct snd_card *card = dev->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 int device = dev->device;
290 unsigned int input_count = 0, output_count = 0;
291
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200292 if (snd_BUG_ON(!card || device < 0 || device >= SNDRV_RAWMIDI_DEVICES))
293 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 info = kmalloc(sizeof(*info), GFP_KERNEL);
295 if (! info)
296 return -ENOMEM;
297 info->device = device;
298 info->stream = SNDRV_RAWMIDI_STREAM_OUTPUT;
299 info->subdevice = 0;
300 if (snd_rawmidi_info_select(card, info) >= 0)
301 output_count = info->subdevices_count;
302 info->stream = SNDRV_RAWMIDI_STREAM_INPUT;
303 if (snd_rawmidi_info_select(card, info) >= 0) {
304 input_count = info->subdevices_count;
305 }
306 ports = output_count;
307 if (ports < input_count)
308 ports = input_count;
309 if (ports == 0) {
310 kfree(info);
311 return -ENODEV;
312 }
313 if (ports > (256 / SNDRV_RAWMIDI_DEVICES))
314 ports = 256 / SNDRV_RAWMIDI_DEVICES;
315
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100316 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 client = synths[card->number];
318 if (client == NULL) {
319 newclient = 1;
Takashi Iwaiecca82b2005-09-09 14:20:49 +0200320 client = kzalloc(sizeof(*client), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (client == NULL) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100322 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 kfree(info);
324 return -ENOMEM;
325 }
Clemens Ladisch7b6d9242005-12-12 09:33:37 +0100326 client->seq_client =
327 snd_seq_create_kernel_client(
Alan Horstmann78fc0302006-04-21 08:39:20 +0200328 card, 0, "%s", card->shortname[0] ?
329 (const char *)card->shortname : "External MIDI");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (client->seq_client < 0) {
331 kfree(client);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100332 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 kfree(info);
334 return -ENOMEM;
335 }
Clemens Ladisch7b6d9242005-12-12 09:33:37 +0100336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100338 msynth = kcalloc(ports, sizeof(struct seq_midisynth), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 port = kmalloc(sizeof(*port), GFP_KERNEL);
340 if (msynth == NULL || port == NULL)
341 goto __nomem;
342
343 for (p = 0; p < ports; p++) {
344 ms = &msynth[p];
345
346 if (snd_seq_midisynth_new(ms, card, device, p) < 0)
347 goto __nomem;
348
349 /* declare port */
350 memset(port, 0, sizeof(*port));
351 port->addr.client = client->seq_client;
352 port->addr.port = device * (256 / SNDRV_RAWMIDI_DEVICES) + p;
353 port->flags = SNDRV_SEQ_PORT_FLG_GIVEN_PORT;
354 memset(info, 0, sizeof(*info));
355 info->device = device;
356 if (p < output_count)
357 info->stream = SNDRV_RAWMIDI_STREAM_OUTPUT;
358 else
359 info->stream = SNDRV_RAWMIDI_STREAM_INPUT;
360 info->subdevice = p;
361 if (snd_rawmidi_info_select(card, info) >= 0)
362 strcpy(port->name, info->subname);
363 if (! port->name[0]) {
364 if (info->name[0]) {
365 if (ports > 1)
366 snprintf(port->name, sizeof(port->name), "%s-%d", info->name, p);
367 else
368 snprintf(port->name, sizeof(port->name), "%s", info->name);
369 } else {
370 /* last resort */
371 if (ports > 1)
372 sprintf(port->name, "MIDI %d-%d-%d", card->number, device, p);
373 else
374 sprintf(port->name, "MIDI %d-%d", card->number, device);
375 }
376 }
377 if ((info->flags & SNDRV_RAWMIDI_INFO_OUTPUT) && p < output_count)
378 port->capability |= SNDRV_SEQ_PORT_CAP_WRITE | SNDRV_SEQ_PORT_CAP_SYNC_WRITE | SNDRV_SEQ_PORT_CAP_SUBS_WRITE;
379 if ((info->flags & SNDRV_RAWMIDI_INFO_INPUT) && p < input_count)
380 port->capability |= SNDRV_SEQ_PORT_CAP_READ | SNDRV_SEQ_PORT_CAP_SYNC_READ | SNDRV_SEQ_PORT_CAP_SUBS_READ;
381 if ((port->capability & (SNDRV_SEQ_PORT_CAP_WRITE|SNDRV_SEQ_PORT_CAP_READ)) == (SNDRV_SEQ_PORT_CAP_WRITE|SNDRV_SEQ_PORT_CAP_READ) &&
382 info->flags & SNDRV_RAWMIDI_INFO_DUPLEX)
383 port->capability |= SNDRV_SEQ_PORT_CAP_DUPLEX;
Clemens Ladisch450047a2006-05-02 16:08:41 +0200384 port->type = SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC
385 | SNDRV_SEQ_PORT_TYPE_HARDWARE
386 | SNDRV_SEQ_PORT_TYPE_PORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 port->midi_channels = 16;
388 memset(&pcallbacks, 0, sizeof(pcallbacks));
389 pcallbacks.owner = THIS_MODULE;
390 pcallbacks.private_data = ms;
391 pcallbacks.subscribe = midisynth_subscribe;
392 pcallbacks.unsubscribe = midisynth_unsubscribe;
393 pcallbacks.use = midisynth_use;
394 pcallbacks.unuse = midisynth_unuse;
395 pcallbacks.event_input = event_process_midi;
396 port->kernel = &pcallbacks;
Clemens Ladischa7b928a2006-05-02 16:22:12 +0200397 if (rmidi->ops && rmidi->ops->get_port_info)
398 rmidi->ops->get_port_info(rmidi, p, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (snd_seq_kernel_client_ctl(client->seq_client, SNDRV_SEQ_IOCTL_CREATE_PORT, port)<0)
400 goto __nomem;
401 ms->seq_client = client->seq_client;
402 ms->seq_port = port->addr.port;
403 }
404 client->ports_per_device[device] = ports;
405 client->ports[device] = msynth;
406 client->num_ports++;
407 if (newclient)
408 synths[card->number] = client;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100409 mutex_unlock(&register_mutex);
Takashi Iwai51f633d2005-03-30 13:49:06 +0200410 kfree(info);
411 kfree(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return 0; /* success */
413
414 __nomem:
415 if (msynth != NULL) {
416 for (p = 0; p < ports; p++)
417 snd_seq_midisynth_delete(&msynth[p]);
418 kfree(msynth);
419 }
420 if (newclient) {
421 snd_seq_delete_kernel_client(client->seq_client);
422 kfree(client);
423 }
424 kfree(info);
425 kfree(port);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100426 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return -ENOMEM;
428}
429
430/* release midi synth port */
431static int
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100432snd_seq_midisynth_unregister_port(struct snd_seq_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100434 struct seq_midisynth_client *client;
435 struct seq_midisynth *msynth;
436 struct snd_card *card = dev->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 int device = dev->device, p, ports;
438
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100439 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 client = synths[card->number];
441 if (client == NULL || client->ports[device] == NULL) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100442 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return -ENODEV;
444 }
445 ports = client->ports_per_device[device];
446 client->ports_per_device[device] = 0;
447 msynth = client->ports[device];
448 client->ports[device] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 for (p = 0; p < ports; p++)
450 snd_seq_midisynth_delete(&msynth[p]);
451 kfree(msynth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 client->num_ports--;
453 if (client->num_ports <= 0) {
454 snd_seq_delete_kernel_client(client->seq_client);
455 synths[card->number] = NULL;
456 kfree(client);
457 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100458 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return 0;
460}
461
462
463static int __init alsa_seq_midi_init(void)
464{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100465 static struct snd_seq_dev_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 snd_seq_midisynth_register_port,
467 snd_seq_midisynth_unregister_port,
468 };
469 memset(&synths, 0, sizeof(synths));
470 snd_seq_autoload_lock();
471 snd_seq_device_register_driver(SNDRV_SEQ_DEV_ID_MIDISYNTH, &ops, 0);
472 snd_seq_autoload_unlock();
473 return 0;
474}
475
476static void __exit alsa_seq_midi_exit(void)
477{
478 snd_seq_device_unregister_driver(SNDRV_SEQ_DEV_ID_MIDISYNTH);
479}
480
481module_init(alsa_seq_midi_init)
482module_exit(alsa_seq_midi_exit)