2 * Abstract layer for MIDI v1.0 stream
3 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
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.
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.
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
22 #include <sound/core.h>
23 #include <linux/major.h>
24 #include <linux/init.h>
25 #include <linux/sched.h>
26 #include <linux/slab.h>
27 #include <linux/time.h>
28 #include <linux/wait.h>
29 #include <linux/mutex.h>
30 #include <linux/moduleparam.h>
31 #include <linux/delay.h>
32 #include <sound/rawmidi.h>
33 #include <sound/info.h>
34 #include <sound/control.h>
35 #include <sound/minors.h>
36 #include <sound/initval.h>
38 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
39 MODULE_DESCRIPTION("Midlevel RawMidi code for ALSA.");
40 MODULE_LICENSE("GPL");
42 #ifdef CONFIG_SND_OSSEMUL
43 static int midi_map[SNDRV_CARDS];
44 static int amidi_map[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = 1};
45 module_param_array(midi_map, int, NULL, 0444);
46 MODULE_PARM_DESC(midi_map, "Raw MIDI device number assigned to 1st OSS device.");
47 module_param_array(amidi_map, int, NULL, 0444);
48 MODULE_PARM_DESC(amidi_map, "Raw MIDI device number assigned to 2nd OSS device.");
49 #endif /* CONFIG_SND_OSSEMUL */
51 static int snd_rawmidi_free(struct snd_rawmidi *rawmidi);
52 static int snd_rawmidi_dev_free(struct snd_device *device);
53 static int snd_rawmidi_dev_register(struct snd_device *device);
54 static int snd_rawmidi_dev_disconnect(struct snd_device *device);
56 static LIST_HEAD(snd_rawmidi_devices);
57 static DEFINE_MUTEX(register_mutex);
59 static struct snd_rawmidi *snd_rawmidi_search(struct snd_card *card, int device)
61 struct snd_rawmidi *rawmidi;
63 list_for_each_entry(rawmidi, &snd_rawmidi_devices, list)
64 if (rawmidi->card == card && rawmidi->device == device)
69 static inline unsigned short snd_rawmidi_file_flags(struct file *file)
71 switch (file->f_mode & (FMODE_READ | FMODE_WRITE)) {
73 return SNDRV_RAWMIDI_LFLG_OUTPUT;
75 return SNDRV_RAWMIDI_LFLG_INPUT;
77 return SNDRV_RAWMIDI_LFLG_OPEN;
81 static inline int snd_rawmidi_ready(struct snd_rawmidi_substream *substream)
83 struct snd_rawmidi_runtime *runtime = substream->runtime;
84 return runtime->avail >= runtime->avail_min;
87 static inline int snd_rawmidi_ready_append(struct snd_rawmidi_substream *substream,
90 struct snd_rawmidi_runtime *runtime = substream->runtime;
91 return runtime->avail >= runtime->avail_min &&
92 (!substream->append || runtime->avail >= count);
95 static void snd_rawmidi_input_event_tasklet(unsigned long data)
97 struct snd_rawmidi_substream *substream = (struct snd_rawmidi_substream *)data;
98 substream->runtime->event(substream);
101 static void snd_rawmidi_output_trigger_tasklet(unsigned long data)
103 struct snd_rawmidi_substream *substream = (struct snd_rawmidi_substream *)data;
104 substream->ops->trigger(substream, 1);
107 static int snd_rawmidi_runtime_create(struct snd_rawmidi_substream *substream)
109 struct snd_rawmidi_runtime *runtime;
111 if ((runtime = kzalloc(sizeof(*runtime), GFP_KERNEL)) == NULL)
113 spin_lock_init(&runtime->lock);
114 init_waitqueue_head(&runtime->sleep);
115 if (substream->stream == SNDRV_RAWMIDI_STREAM_INPUT)
116 tasklet_init(&runtime->tasklet,
117 snd_rawmidi_input_event_tasklet,
118 (unsigned long)substream);
120 tasklet_init(&runtime->tasklet,
121 snd_rawmidi_output_trigger_tasklet,
122 (unsigned long)substream);
123 runtime->event = NULL;
124 runtime->buffer_size = PAGE_SIZE;
125 runtime->avail_min = 1;
126 if (substream->stream == SNDRV_RAWMIDI_STREAM_INPUT)
129 runtime->avail = runtime->buffer_size;
130 if ((runtime->buffer = kmalloc(runtime->buffer_size, GFP_KERNEL)) == NULL) {
134 runtime->appl_ptr = runtime->hw_ptr = 0;
135 substream->runtime = runtime;
139 static int snd_rawmidi_runtime_free(struct snd_rawmidi_substream *substream)
141 struct snd_rawmidi_runtime *runtime = substream->runtime;
143 kfree(runtime->buffer);
145 substream->runtime = NULL;
149 static inline void snd_rawmidi_output_trigger(struct snd_rawmidi_substream *substream,int up)
151 if (!substream->opened)
154 tasklet_schedule(&substream->runtime->tasklet);
156 tasklet_kill(&substream->runtime->tasklet);
157 substream->ops->trigger(substream, 0);
161 static void snd_rawmidi_input_trigger(struct snd_rawmidi_substream *substream, int up)
163 if (!substream->opened)
165 substream->ops->trigger(substream, up);
166 if (!up && substream->runtime->event)
167 tasklet_kill(&substream->runtime->tasklet);
170 int snd_rawmidi_drop_output(struct snd_rawmidi_substream *substream)
173 struct snd_rawmidi_runtime *runtime = substream->runtime;
175 snd_rawmidi_output_trigger(substream, 0);
177 spin_lock_irqsave(&runtime->lock, flags);
178 runtime->appl_ptr = runtime->hw_ptr = 0;
179 runtime->avail = runtime->buffer_size;
180 spin_unlock_irqrestore(&runtime->lock, flags);
184 int snd_rawmidi_drain_output(struct snd_rawmidi_substream *substream)
188 struct snd_rawmidi_runtime *runtime = substream->runtime;
192 timeout = wait_event_interruptible_timeout(runtime->sleep,
193 (runtime->avail >= runtime->buffer_size),
195 if (signal_pending(current))
197 if (runtime->avail < runtime->buffer_size && !timeout) {
198 snd_printk(KERN_WARNING "rawmidi drain error (avail = %li, buffer_size = %li)\n", (long)runtime->avail, (long)runtime->buffer_size);
202 if (err != -ERESTARTSYS) {
203 /* we need wait a while to make sure that Tx FIFOs are empty */
204 if (substream->ops->drain)
205 substream->ops->drain(substream);
208 snd_rawmidi_drop_output(substream);
213 int snd_rawmidi_drain_input(struct snd_rawmidi_substream *substream)
216 struct snd_rawmidi_runtime *runtime = substream->runtime;
218 snd_rawmidi_input_trigger(substream, 0);
220 spin_lock_irqsave(&runtime->lock, flags);
221 runtime->appl_ptr = runtime->hw_ptr = 0;
223 spin_unlock_irqrestore(&runtime->lock, flags);
227 /* look for an available substream for the given stream direction;
228 * if a specific subdevice is given, try to assign it
230 static int assign_substream(struct snd_rawmidi *rmidi, int subdevice,
231 int stream, int mode,
232 struct snd_rawmidi_substream **sub_ret)
234 struct snd_rawmidi_substream *substream;
235 struct snd_rawmidi_str *s = &rmidi->streams[stream];
236 static unsigned int info_flags[2] = {
237 [SNDRV_RAWMIDI_STREAM_OUTPUT] = SNDRV_RAWMIDI_INFO_OUTPUT,
238 [SNDRV_RAWMIDI_STREAM_INPUT] = SNDRV_RAWMIDI_INFO_INPUT,
241 if (!(rmidi->info_flags & info_flags[stream]))
243 if (subdevice >= 0 && subdevice >= s->substream_count)
246 list_for_each_entry(substream, &s->substreams, list) {
247 if (substream->opened) {
248 if (stream == SNDRV_RAWMIDI_STREAM_INPUT ||
249 !(mode & SNDRV_RAWMIDI_LFLG_APPEND) ||
253 if (subdevice < 0 || subdevice == substream->number) {
254 *sub_ret = substream;
261 /* open and do ref-counting for the given substream */
262 static int open_substream(struct snd_rawmidi *rmidi,
263 struct snd_rawmidi_substream *substream,
268 if (substream->use_count == 0) {
269 err = snd_rawmidi_runtime_create(substream);
272 err = substream->ops->open(substream);
274 snd_rawmidi_runtime_free(substream);
277 substream->opened = 1;
278 substream->active_sensing = 0;
279 if (mode & SNDRV_RAWMIDI_LFLG_APPEND)
280 substream->append = 1;
281 substream->pid = get_pid(task_pid(current));
282 rmidi->streams[substream->stream].substream_opened++;
284 substream->use_count++;
288 static void close_substream(struct snd_rawmidi *rmidi,
289 struct snd_rawmidi_substream *substream,
292 static int rawmidi_open_priv(struct snd_rawmidi *rmidi, int subdevice, int mode,
293 struct snd_rawmidi_file *rfile)
295 struct snd_rawmidi_substream *sinput = NULL, *soutput = NULL;
298 rfile->input = rfile->output = NULL;
299 if (mode & SNDRV_RAWMIDI_LFLG_INPUT) {
300 err = assign_substream(rmidi, subdevice,
301 SNDRV_RAWMIDI_STREAM_INPUT,
306 if (mode & SNDRV_RAWMIDI_LFLG_OUTPUT) {
307 err = assign_substream(rmidi, subdevice,
308 SNDRV_RAWMIDI_STREAM_OUTPUT,
315 err = open_substream(rmidi, sinput, mode);
320 err = open_substream(rmidi, soutput, mode);
323 close_substream(rmidi, sinput, 0);
328 rfile->rmidi = rmidi;
329 rfile->input = sinput;
330 rfile->output = soutput;
334 /* called from sound/core/seq/seq_midi.c */
335 int snd_rawmidi_kernel_open(struct snd_card *card, int device, int subdevice,
336 int mode, struct snd_rawmidi_file * rfile)
338 struct snd_rawmidi *rmidi;
341 if (snd_BUG_ON(!rfile))
344 mutex_lock(®ister_mutex);
345 rmidi = snd_rawmidi_search(card, device);
347 mutex_unlock(®ister_mutex);
350 if (!try_module_get(rmidi->card->module)) {
351 mutex_unlock(®ister_mutex);
354 mutex_unlock(®ister_mutex);
356 mutex_lock(&rmidi->open_mutex);
357 err = rawmidi_open_priv(rmidi, subdevice, mode, rfile);
358 mutex_unlock(&rmidi->open_mutex);
360 module_put(rmidi->card->module);
364 static int snd_rawmidi_open(struct inode *inode, struct file *file)
366 int maj = imajor(inode);
367 struct snd_card *card;
369 unsigned short fflags;
371 struct snd_rawmidi *rmidi;
372 struct snd_rawmidi_file *rawmidi_file = NULL;
374 struct snd_ctl_file *kctl;
376 if ((file->f_flags & O_APPEND) && !(file->f_flags & O_NONBLOCK))
377 return -EINVAL; /* invalid combination */
379 if (maj == snd_major) {
380 rmidi = snd_lookup_minor_data(iminor(inode),
381 SNDRV_DEVICE_TYPE_RAWMIDI);
382 #ifdef CONFIG_SND_OSSEMUL
383 } else if (maj == SOUND_MAJOR) {
384 rmidi = snd_lookup_oss_minor_data(iminor(inode),
385 SNDRV_OSS_DEVICE_TYPE_MIDI);
393 if (!try_module_get(rmidi->card->module))
396 mutex_lock(&rmidi->open_mutex);
398 err = snd_card_file_add(card, file);
401 fflags = snd_rawmidi_file_flags(file);
402 if ((file->f_flags & O_APPEND) || maj == SOUND_MAJOR) /* OSS emul? */
403 fflags |= SNDRV_RAWMIDI_LFLG_APPEND;
404 rawmidi_file = kmalloc(sizeof(*rawmidi_file), GFP_KERNEL);
405 if (rawmidi_file == NULL) {
409 init_waitqueue_entry(&wait, current);
410 add_wait_queue(&rmidi->open_wait, &wait);
413 read_lock(&card->ctl_files_rwlock);
414 list_for_each_entry(kctl, &card->ctl_files, list) {
415 if (kctl->pid == task_pid(current)) {
416 subdevice = kctl->prefer_rawmidi_subdevice;
421 read_unlock(&card->ctl_files_rwlock);
422 err = rawmidi_open_priv(rmidi, subdevice, fflags, rawmidi_file);
425 if (err == -EAGAIN) {
426 if (file->f_flags & O_NONBLOCK) {
432 set_current_state(TASK_INTERRUPTIBLE);
433 mutex_unlock(&rmidi->open_mutex);
435 mutex_lock(&rmidi->open_mutex);
436 if (signal_pending(current)) {
441 remove_wait_queue(&rmidi->open_wait, &wait);
446 #ifdef CONFIG_SND_OSSEMUL
447 if (rawmidi_file->input && rawmidi_file->input->runtime)
448 rawmidi_file->input->runtime->oss = (maj == SOUND_MAJOR);
449 if (rawmidi_file->output && rawmidi_file->output->runtime)
450 rawmidi_file->output->runtime->oss = (maj == SOUND_MAJOR);
452 file->private_data = rawmidi_file;
453 mutex_unlock(&rmidi->open_mutex);
457 snd_card_file_remove(card, file);
459 mutex_unlock(&rmidi->open_mutex);
460 module_put(rmidi->card->module);
464 static void close_substream(struct snd_rawmidi *rmidi,
465 struct snd_rawmidi_substream *substream,
468 if (--substream->use_count)
472 if (substream->stream == SNDRV_RAWMIDI_STREAM_INPUT)
473 snd_rawmidi_input_trigger(substream, 0);
475 if (substream->active_sensing) {
476 unsigned char buf = 0xfe;
477 /* sending single active sensing message
478 * to shut the device up
480 snd_rawmidi_kernel_write(substream, &buf, 1);
482 if (snd_rawmidi_drain_output(substream) == -ERESTARTSYS)
483 snd_rawmidi_output_trigger(substream, 0);
486 substream->ops->close(substream);
487 if (substream->runtime->private_free)
488 substream->runtime->private_free(substream);
489 snd_rawmidi_runtime_free(substream);
490 substream->opened = 0;
491 substream->append = 0;
492 put_pid(substream->pid);
493 substream->pid = NULL;
494 rmidi->streams[substream->stream].substream_opened--;
497 static void rawmidi_release_priv(struct snd_rawmidi_file *rfile)
499 struct snd_rawmidi *rmidi;
501 rmidi = rfile->rmidi;
502 mutex_lock(&rmidi->open_mutex);
504 close_substream(rmidi, rfile->input, 1);
508 close_substream(rmidi, rfile->output, 1);
509 rfile->output = NULL;
512 mutex_unlock(&rmidi->open_mutex);
513 wake_up(&rmidi->open_wait);
516 /* called from sound/core/seq/seq_midi.c */
517 int snd_rawmidi_kernel_release(struct snd_rawmidi_file *rfile)
519 struct snd_rawmidi *rmidi;
521 if (snd_BUG_ON(!rfile))
524 rmidi = rfile->rmidi;
525 rawmidi_release_priv(rfile);
526 module_put(rmidi->card->module);
530 static int snd_rawmidi_release(struct inode *inode, struct file *file)
532 struct snd_rawmidi_file *rfile;
533 struct snd_rawmidi *rmidi;
535 rfile = file->private_data;
536 rmidi = rfile->rmidi;
537 rawmidi_release_priv(rfile);
539 snd_card_file_remove(rmidi->card, file);
540 module_put(rmidi->card->module);
544 static int snd_rawmidi_info(struct snd_rawmidi_substream *substream,
545 struct snd_rawmidi_info *info)
547 struct snd_rawmidi *rmidi;
549 if (substream == NULL)
551 rmidi = substream->rmidi;
552 memset(info, 0, sizeof(*info));
553 info->card = rmidi->card->number;
554 info->device = rmidi->device;
555 info->subdevice = substream->number;
556 info->stream = substream->stream;
557 info->flags = rmidi->info_flags;
558 strcpy(info->id, rmidi->id);
559 strcpy(info->name, rmidi->name);
560 strcpy(info->subname, substream->name);
561 info->subdevices_count = substream->pstr->substream_count;
562 info->subdevices_avail = (substream->pstr->substream_count -
563 substream->pstr->substream_opened);
567 static int snd_rawmidi_info_user(struct snd_rawmidi_substream *substream,
568 struct snd_rawmidi_info __user * _info)
570 struct snd_rawmidi_info info;
572 if ((err = snd_rawmidi_info(substream, &info)) < 0)
574 if (copy_to_user(_info, &info, sizeof(struct snd_rawmidi_info)))
579 int snd_rawmidi_info_select(struct snd_card *card, struct snd_rawmidi_info *info)
581 struct snd_rawmidi *rmidi;
582 struct snd_rawmidi_str *pstr;
583 struct snd_rawmidi_substream *substream;
585 mutex_lock(®ister_mutex);
586 rmidi = snd_rawmidi_search(card, info->device);
587 mutex_unlock(®ister_mutex);
590 if (info->stream < 0 || info->stream > 1)
592 pstr = &rmidi->streams[info->stream];
593 if (pstr->substream_count == 0)
595 if (info->subdevice >= pstr->substream_count)
597 list_for_each_entry(substream, &pstr->substreams, list) {
598 if ((unsigned int)substream->number == info->subdevice)
599 return snd_rawmidi_info(substream, info);
604 static int snd_rawmidi_info_select_user(struct snd_card *card,
605 struct snd_rawmidi_info __user *_info)
608 struct snd_rawmidi_info info;
609 if (get_user(info.device, &_info->device))
611 if (get_user(info.stream, &_info->stream))
613 if (get_user(info.subdevice, &_info->subdevice))
615 if ((err = snd_rawmidi_info_select(card, &info)) < 0)
617 if (copy_to_user(_info, &info, sizeof(struct snd_rawmidi_info)))
622 int snd_rawmidi_output_params(struct snd_rawmidi_substream *substream,
623 struct snd_rawmidi_params * params)
626 struct snd_rawmidi_runtime *runtime = substream->runtime;
628 if (substream->append && substream->use_count > 1)
630 snd_rawmidi_drain_output(substream);
631 if (params->buffer_size < 32 || params->buffer_size > 1024L * 1024L) {
634 if (params->avail_min < 1 || params->avail_min > params->buffer_size) {
637 if (params->buffer_size != runtime->buffer_size) {
638 newbuf = kmalloc(params->buffer_size, GFP_KERNEL);
641 kfree(runtime->buffer);
642 runtime->buffer = newbuf;
643 runtime->buffer_size = params->buffer_size;
644 runtime->avail = runtime->buffer_size;
646 runtime->avail_min = params->avail_min;
647 substream->active_sensing = !params->no_active_sensing;
651 int snd_rawmidi_input_params(struct snd_rawmidi_substream *substream,
652 struct snd_rawmidi_params * params)
655 struct snd_rawmidi_runtime *runtime = substream->runtime;
657 snd_rawmidi_drain_input(substream);
658 if (params->buffer_size < 32 || params->buffer_size > 1024L * 1024L) {
661 if (params->avail_min < 1 || params->avail_min > params->buffer_size) {
664 if (params->buffer_size != runtime->buffer_size) {
665 newbuf = kmalloc(params->buffer_size, GFP_KERNEL);
668 kfree(runtime->buffer);
669 runtime->buffer = newbuf;
670 runtime->buffer_size = params->buffer_size;
672 runtime->avail_min = params->avail_min;
676 static int snd_rawmidi_output_status(struct snd_rawmidi_substream *substream,
677 struct snd_rawmidi_status * status)
679 struct snd_rawmidi_runtime *runtime = substream->runtime;
681 memset(status, 0, sizeof(*status));
682 status->stream = SNDRV_RAWMIDI_STREAM_OUTPUT;
683 spin_lock_irq(&runtime->lock);
684 status->avail = runtime->avail;
685 spin_unlock_irq(&runtime->lock);
689 static int snd_rawmidi_input_status(struct snd_rawmidi_substream *substream,
690 struct snd_rawmidi_status * status)
692 struct snd_rawmidi_runtime *runtime = substream->runtime;
694 memset(status, 0, sizeof(*status));
695 status->stream = SNDRV_RAWMIDI_STREAM_INPUT;
696 spin_lock_irq(&runtime->lock);
697 status->avail = runtime->avail;
698 status->xruns = runtime->xruns;
700 spin_unlock_irq(&runtime->lock);
704 static long snd_rawmidi_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
706 struct snd_rawmidi_file *rfile;
707 void __user *argp = (void __user *)arg;
709 rfile = file->private_data;
710 if (((cmd >> 8) & 0xff) != 'W')
713 case SNDRV_RAWMIDI_IOCTL_PVERSION:
714 return put_user(SNDRV_RAWMIDI_VERSION, (int __user *)argp) ? -EFAULT : 0;
715 case SNDRV_RAWMIDI_IOCTL_INFO:
718 struct snd_rawmidi_info __user *info = argp;
719 if (get_user(stream, &info->stream))
722 case SNDRV_RAWMIDI_STREAM_INPUT:
723 return snd_rawmidi_info_user(rfile->input, info);
724 case SNDRV_RAWMIDI_STREAM_OUTPUT:
725 return snd_rawmidi_info_user(rfile->output, info);
730 case SNDRV_RAWMIDI_IOCTL_PARAMS:
732 struct snd_rawmidi_params params;
733 if (copy_from_user(¶ms, argp, sizeof(struct snd_rawmidi_params)))
735 switch (params.stream) {
736 case SNDRV_RAWMIDI_STREAM_OUTPUT:
737 if (rfile->output == NULL)
739 return snd_rawmidi_output_params(rfile->output, ¶ms);
740 case SNDRV_RAWMIDI_STREAM_INPUT:
741 if (rfile->input == NULL)
743 return snd_rawmidi_input_params(rfile->input, ¶ms);
748 case SNDRV_RAWMIDI_IOCTL_STATUS:
751 struct snd_rawmidi_status status;
752 if (copy_from_user(&status, argp, sizeof(struct snd_rawmidi_status)))
754 switch (status.stream) {
755 case SNDRV_RAWMIDI_STREAM_OUTPUT:
756 if (rfile->output == NULL)
758 err = snd_rawmidi_output_status(rfile->output, &status);
760 case SNDRV_RAWMIDI_STREAM_INPUT:
761 if (rfile->input == NULL)
763 err = snd_rawmidi_input_status(rfile->input, &status);
770 if (copy_to_user(argp, &status, sizeof(struct snd_rawmidi_status)))
774 case SNDRV_RAWMIDI_IOCTL_DROP:
777 if (get_user(val, (int __user *) argp))
780 case SNDRV_RAWMIDI_STREAM_OUTPUT:
781 if (rfile->output == NULL)
783 return snd_rawmidi_drop_output(rfile->output);
788 case SNDRV_RAWMIDI_IOCTL_DRAIN:
791 if (get_user(val, (int __user *) argp))
794 case SNDRV_RAWMIDI_STREAM_OUTPUT:
795 if (rfile->output == NULL)
797 return snd_rawmidi_drain_output(rfile->output);
798 case SNDRV_RAWMIDI_STREAM_INPUT:
799 if (rfile->input == NULL)
801 return snd_rawmidi_drain_input(rfile->input);
806 #ifdef CONFIG_SND_DEBUG
808 snd_printk(KERN_WARNING "rawmidi: unknown command = 0x%x\n", cmd);
814 static int snd_rawmidi_control_ioctl(struct snd_card *card,
815 struct snd_ctl_file *control,
819 void __user *argp = (void __user *)arg;
822 case SNDRV_CTL_IOCTL_RAWMIDI_NEXT_DEVICE:
826 if (get_user(device, (int __user *)argp))
828 mutex_lock(®ister_mutex);
829 device = device < 0 ? 0 : device + 1;
830 while (device < SNDRV_RAWMIDI_DEVICES) {
831 if (snd_rawmidi_search(card, device))
835 if (device == SNDRV_RAWMIDI_DEVICES)
837 mutex_unlock(®ister_mutex);
838 if (put_user(device, (int __user *)argp))
842 case SNDRV_CTL_IOCTL_RAWMIDI_PREFER_SUBDEVICE:
846 if (get_user(val, (int __user *)argp))
848 control->prefer_rawmidi_subdevice = val;
851 case SNDRV_CTL_IOCTL_RAWMIDI_INFO:
852 return snd_rawmidi_info_select_user(card, argp);
858 * snd_rawmidi_receive - receive the input data from the device
859 * @substream: the rawmidi substream
860 * @buffer: the buffer pointer
861 * @count: the data size to read
863 * Reads the data from the internal buffer.
865 * Returns the size of read data, or a negative error code on failure.
867 int snd_rawmidi_receive(struct snd_rawmidi_substream *substream,
868 const unsigned char *buffer, int count)
871 int result = 0, count1;
872 struct snd_rawmidi_runtime *runtime = substream->runtime;
874 if (!substream->opened)
876 if (runtime->buffer == NULL) {
877 snd_printd("snd_rawmidi_receive: input is not active!!!\n");
880 spin_lock_irqsave(&runtime->lock, flags);
881 if (count == 1) { /* special case, faster code */
883 if (runtime->avail < runtime->buffer_size) {
884 runtime->buffer[runtime->hw_ptr++] = buffer[0];
885 runtime->hw_ptr %= runtime->buffer_size;
892 substream->bytes += count;
893 count1 = runtime->buffer_size - runtime->hw_ptr;
896 if (count1 > (int)(runtime->buffer_size - runtime->avail))
897 count1 = runtime->buffer_size - runtime->avail;
898 memcpy(runtime->buffer + runtime->hw_ptr, buffer, count1);
899 runtime->hw_ptr += count1;
900 runtime->hw_ptr %= runtime->buffer_size;
901 runtime->avail += count1;
907 if (count1 > (int)(runtime->buffer_size - runtime->avail)) {
908 count1 = runtime->buffer_size - runtime->avail;
909 runtime->xruns += count - count1;
912 memcpy(runtime->buffer, buffer, count1);
913 runtime->hw_ptr = count1;
914 runtime->avail += count1;
921 tasklet_schedule(&runtime->tasklet);
922 else if (snd_rawmidi_ready(substream))
923 wake_up(&runtime->sleep);
925 spin_unlock_irqrestore(&runtime->lock, flags);
929 static long snd_rawmidi_kernel_read1(struct snd_rawmidi_substream *substream,
930 unsigned char __user *userbuf,
931 unsigned char *kernelbuf, long count)
934 long result = 0, count1;
935 struct snd_rawmidi_runtime *runtime = substream->runtime;
937 while (count > 0 && runtime->avail) {
938 count1 = runtime->buffer_size - runtime->appl_ptr;
941 spin_lock_irqsave(&runtime->lock, flags);
942 if (count1 > (int)runtime->avail)
943 count1 = runtime->avail;
945 memcpy(kernelbuf + result, runtime->buffer + runtime->appl_ptr, count1);
947 spin_unlock_irqrestore(&runtime->lock, flags);
948 if (copy_to_user(userbuf + result,
949 runtime->buffer + runtime->appl_ptr, count1)) {
950 return result > 0 ? result : -EFAULT;
952 spin_lock_irqsave(&runtime->lock, flags);
954 runtime->appl_ptr += count1;
955 runtime->appl_ptr %= runtime->buffer_size;
956 runtime->avail -= count1;
957 spin_unlock_irqrestore(&runtime->lock, flags);
964 long snd_rawmidi_kernel_read(struct snd_rawmidi_substream *substream,
965 unsigned char *buf, long count)
967 snd_rawmidi_input_trigger(substream, 1);
968 return snd_rawmidi_kernel_read1(substream, NULL/*userbuf*/, buf, count);
971 static ssize_t snd_rawmidi_read(struct file *file, char __user *buf, size_t count,
976 struct snd_rawmidi_file *rfile;
977 struct snd_rawmidi_substream *substream;
978 struct snd_rawmidi_runtime *runtime;
980 rfile = file->private_data;
981 substream = rfile->input;
982 if (substream == NULL)
984 runtime = substream->runtime;
985 snd_rawmidi_input_trigger(substream, 1);
988 spin_lock_irq(&runtime->lock);
989 while (!snd_rawmidi_ready(substream)) {
991 if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
992 spin_unlock_irq(&runtime->lock);
993 return result > 0 ? result : -EAGAIN;
995 init_waitqueue_entry(&wait, current);
996 add_wait_queue(&runtime->sleep, &wait);
997 set_current_state(TASK_INTERRUPTIBLE);
998 spin_unlock_irq(&runtime->lock);
1000 remove_wait_queue(&runtime->sleep, &wait);
1001 if (signal_pending(current))
1002 return result > 0 ? result : -ERESTARTSYS;
1003 if (!runtime->avail)
1004 return result > 0 ? result : -EIO;
1005 spin_lock_irq(&runtime->lock);
1007 spin_unlock_irq(&runtime->lock);
1008 count1 = snd_rawmidi_kernel_read1(substream,
1009 (unsigned char __user *)buf,
1013 return result > 0 ? result : count1;
1022 * snd_rawmidi_transmit_empty - check whether the output buffer is empty
1023 * @substream: the rawmidi substream
1025 * Returns 1 if the internal output buffer is empty, 0 if not.
1027 int snd_rawmidi_transmit_empty(struct snd_rawmidi_substream *substream)
1029 struct snd_rawmidi_runtime *runtime = substream->runtime;
1031 unsigned long flags;
1033 if (runtime->buffer == NULL) {
1034 snd_printd("snd_rawmidi_transmit_empty: output is not active!!!\n");
1037 spin_lock_irqsave(&runtime->lock, flags);
1038 result = runtime->avail >= runtime->buffer_size;
1039 spin_unlock_irqrestore(&runtime->lock, flags);
1044 * snd_rawmidi_transmit_peek - copy data from the internal buffer
1045 * @substream: the rawmidi substream
1046 * @buffer: the buffer pointer
1047 * @count: data size to transfer
1049 * Copies data from the internal output buffer to the given buffer.
1051 * Call this in the interrupt handler when the midi output is ready,
1052 * and call snd_rawmidi_transmit_ack() after the transmission is
1055 * Returns the size of copied data, or a negative error code on failure.
1057 int snd_rawmidi_transmit_peek(struct snd_rawmidi_substream *substream,
1058 unsigned char *buffer, int count)
1060 unsigned long flags;
1062 struct snd_rawmidi_runtime *runtime = substream->runtime;
1064 if (runtime->buffer == NULL) {
1065 snd_printd("snd_rawmidi_transmit_peek: output is not active!!!\n");
1069 spin_lock_irqsave(&runtime->lock, flags);
1070 if (runtime->avail >= runtime->buffer_size) {
1071 /* warning: lowlevel layer MUST trigger down the hardware */
1074 if (count == 1) { /* special case, faster code */
1075 *buffer = runtime->buffer[runtime->hw_ptr];
1078 count1 = runtime->buffer_size - runtime->hw_ptr;
1081 if (count1 > (int)(runtime->buffer_size - runtime->avail))
1082 count1 = runtime->buffer_size - runtime->avail;
1083 memcpy(buffer, runtime->buffer + runtime->hw_ptr, count1);
1087 if (count > (int)(runtime->buffer_size - runtime->avail - count1))
1088 count = runtime->buffer_size - runtime->avail - count1;
1089 memcpy(buffer + count1, runtime->buffer, count);
1094 spin_unlock_irqrestore(&runtime->lock, flags);
1099 * snd_rawmidi_transmit_ack - acknowledge the transmission
1100 * @substream: the rawmidi substream
1101 * @count: the tranferred count
1103 * Advances the hardware pointer for the internal output buffer with
1104 * the given size and updates the condition.
1105 * Call after the transmission is finished.
1107 * Returns the advanced size if successful, or a negative error code on failure.
1109 int snd_rawmidi_transmit_ack(struct snd_rawmidi_substream *substream, int count)
1111 unsigned long flags;
1112 struct snd_rawmidi_runtime *runtime = substream->runtime;
1114 if (runtime->buffer == NULL) {
1115 snd_printd("snd_rawmidi_transmit_ack: output is not active!!!\n");
1118 spin_lock_irqsave(&runtime->lock, flags);
1119 snd_BUG_ON(runtime->avail + count > runtime->buffer_size);
1120 runtime->hw_ptr += count;
1121 runtime->hw_ptr %= runtime->buffer_size;
1122 runtime->avail += count;
1123 substream->bytes += count;
1125 if (runtime->drain || snd_rawmidi_ready(substream))
1126 wake_up(&runtime->sleep);
1128 spin_unlock_irqrestore(&runtime->lock, flags);
1133 * snd_rawmidi_transmit - copy from the buffer to the device
1134 * @substream: the rawmidi substream
1135 * @buffer: the buffer pointer
1136 * @count: the data size to transfer
1138 * Copies data from the buffer to the device and advances the pointer.
1140 * Returns the copied size if successful, or a negative error code on failure.
1142 int snd_rawmidi_transmit(struct snd_rawmidi_substream *substream,
1143 unsigned char *buffer, int count)
1145 if (!substream->opened)
1147 count = snd_rawmidi_transmit_peek(substream, buffer, count);
1150 return snd_rawmidi_transmit_ack(substream, count);
1153 static long snd_rawmidi_kernel_write1(struct snd_rawmidi_substream *substream,
1154 const unsigned char __user *userbuf,
1155 const unsigned char *kernelbuf,
1158 unsigned long flags;
1159 long count1, result;
1160 struct snd_rawmidi_runtime *runtime = substream->runtime;
1162 if (snd_BUG_ON(!kernelbuf && !userbuf))
1164 if (snd_BUG_ON(!runtime->buffer))
1168 spin_lock_irqsave(&runtime->lock, flags);
1169 if (substream->append) {
1170 if ((long)runtime->avail < count) {
1171 spin_unlock_irqrestore(&runtime->lock, flags);
1175 while (count > 0 && runtime->avail > 0) {
1176 count1 = runtime->buffer_size - runtime->appl_ptr;
1179 if (count1 > (long)runtime->avail)
1180 count1 = runtime->avail;
1182 memcpy(runtime->buffer + runtime->appl_ptr,
1183 kernelbuf + result, count1);
1185 spin_unlock_irqrestore(&runtime->lock, flags);
1186 if (copy_from_user(runtime->buffer + runtime->appl_ptr,
1187 userbuf + result, count1)) {
1188 spin_lock_irqsave(&runtime->lock, flags);
1189 result = result > 0 ? result : -EFAULT;
1192 spin_lock_irqsave(&runtime->lock, flags);
1194 runtime->appl_ptr += count1;
1195 runtime->appl_ptr %= runtime->buffer_size;
1196 runtime->avail -= count1;
1201 count1 = runtime->avail < runtime->buffer_size;
1202 spin_unlock_irqrestore(&runtime->lock, flags);
1204 snd_rawmidi_output_trigger(substream, 1);
1208 long snd_rawmidi_kernel_write(struct snd_rawmidi_substream *substream,
1209 const unsigned char *buf, long count)
1211 return snd_rawmidi_kernel_write1(substream, NULL, buf, count);
1214 static ssize_t snd_rawmidi_write(struct file *file, const char __user *buf,
1215 size_t count, loff_t *offset)
1217 long result, timeout;
1219 struct snd_rawmidi_file *rfile;
1220 struct snd_rawmidi_runtime *runtime;
1221 struct snd_rawmidi_substream *substream;
1223 rfile = file->private_data;
1224 substream = rfile->output;
1225 runtime = substream->runtime;
1226 /* we cannot put an atomic message to our buffer */
1227 if (substream->append && count > runtime->buffer_size)
1231 spin_lock_irq(&runtime->lock);
1232 while (!snd_rawmidi_ready_append(substream, count)) {
1234 if (file->f_flags & O_NONBLOCK) {
1235 spin_unlock_irq(&runtime->lock);
1236 return result > 0 ? result : -EAGAIN;
1238 init_waitqueue_entry(&wait, current);
1239 add_wait_queue(&runtime->sleep, &wait);
1240 set_current_state(TASK_INTERRUPTIBLE);
1241 spin_unlock_irq(&runtime->lock);
1242 timeout = schedule_timeout(30 * HZ);
1243 remove_wait_queue(&runtime->sleep, &wait);
1244 if (signal_pending(current))
1245 return result > 0 ? result : -ERESTARTSYS;
1246 if (!runtime->avail && !timeout)
1247 return result > 0 ? result : -EIO;
1248 spin_lock_irq(&runtime->lock);
1250 spin_unlock_irq(&runtime->lock);
1251 count1 = snd_rawmidi_kernel_write1(substream, buf, NULL, count);
1253 return result > 0 ? result : count1;
1256 if ((size_t)count1 < count && (file->f_flags & O_NONBLOCK))
1260 if (file->f_flags & O_DSYNC) {
1261 spin_lock_irq(&runtime->lock);
1262 while (runtime->avail != runtime->buffer_size) {
1264 unsigned int last_avail = runtime->avail;
1265 init_waitqueue_entry(&wait, current);
1266 add_wait_queue(&runtime->sleep, &wait);
1267 set_current_state(TASK_INTERRUPTIBLE);
1268 spin_unlock_irq(&runtime->lock);
1269 timeout = schedule_timeout(30 * HZ);
1270 remove_wait_queue(&runtime->sleep, &wait);
1271 if (signal_pending(current))
1272 return result > 0 ? result : -ERESTARTSYS;
1273 if (runtime->avail == last_avail && !timeout)
1274 return result > 0 ? result : -EIO;
1275 spin_lock_irq(&runtime->lock);
1277 spin_unlock_irq(&runtime->lock);
1282 static unsigned int snd_rawmidi_poll(struct file *file, poll_table * wait)
1284 struct snd_rawmidi_file *rfile;
1285 struct snd_rawmidi_runtime *runtime;
1288 rfile = file->private_data;
1289 if (rfile->input != NULL) {
1290 runtime = rfile->input->runtime;
1291 snd_rawmidi_input_trigger(rfile->input, 1);
1292 poll_wait(file, &runtime->sleep, wait);
1294 if (rfile->output != NULL) {
1295 runtime = rfile->output->runtime;
1296 poll_wait(file, &runtime->sleep, wait);
1299 if (rfile->input != NULL) {
1300 if (snd_rawmidi_ready(rfile->input))
1301 mask |= POLLIN | POLLRDNORM;
1303 if (rfile->output != NULL) {
1304 if (snd_rawmidi_ready(rfile->output))
1305 mask |= POLLOUT | POLLWRNORM;
1312 #ifdef CONFIG_COMPAT
1313 #include "rawmidi_compat.c"
1315 #define snd_rawmidi_ioctl_compat NULL
1322 static void snd_rawmidi_proc_info_read(struct snd_info_entry *entry,
1323 struct snd_info_buffer *buffer)
1325 struct snd_rawmidi *rmidi;
1326 struct snd_rawmidi_substream *substream;
1327 struct snd_rawmidi_runtime *runtime;
1329 rmidi = entry->private_data;
1330 snd_iprintf(buffer, "%s\n\n", rmidi->name);
1331 mutex_lock(&rmidi->open_mutex);
1332 if (rmidi->info_flags & SNDRV_RAWMIDI_INFO_OUTPUT) {
1333 list_for_each_entry(substream,
1334 &rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT].substreams,
1338 " Tx bytes : %lu\n",
1340 (unsigned long) substream->bytes);
1341 if (substream->opened) {
1343 " Owner PID : %d\n",
1344 pid_vnr(substream->pid));
1345 runtime = substream->runtime;
1348 " Buffer size : %lu\n"
1350 runtime->oss ? "OSS compatible" : "native",
1351 (unsigned long) runtime->buffer_size,
1352 (unsigned long) runtime->avail);
1356 if (rmidi->info_flags & SNDRV_RAWMIDI_INFO_INPUT) {
1357 list_for_each_entry(substream,
1358 &rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT].substreams,
1362 " Rx bytes : %lu\n",
1364 (unsigned long) substream->bytes);
1365 if (substream->opened) {
1367 " Owner PID : %d\n",
1368 pid_vnr(substream->pid));
1369 runtime = substream->runtime;
1371 " Buffer size : %lu\n"
1373 " Overruns : %lu\n",
1374 (unsigned long) runtime->buffer_size,
1375 (unsigned long) runtime->avail,
1376 (unsigned long) runtime->xruns);
1380 mutex_unlock(&rmidi->open_mutex);
1384 * Register functions
1387 static const struct file_operations snd_rawmidi_f_ops =
1389 .owner = THIS_MODULE,
1390 .read = snd_rawmidi_read,
1391 .write = snd_rawmidi_write,
1392 .open = snd_rawmidi_open,
1393 .release = snd_rawmidi_release,
1394 .poll = snd_rawmidi_poll,
1395 .unlocked_ioctl = snd_rawmidi_ioctl,
1396 .compat_ioctl = snd_rawmidi_ioctl_compat,
1399 static int snd_rawmidi_alloc_substreams(struct snd_rawmidi *rmidi,
1400 struct snd_rawmidi_str *stream,
1404 struct snd_rawmidi_substream *substream;
1407 for (idx = 0; idx < count; idx++) {
1408 substream = kzalloc(sizeof(*substream), GFP_KERNEL);
1409 if (substream == NULL) {
1410 snd_printk(KERN_ERR "rawmidi: cannot allocate substream\n");
1413 substream->stream = direction;
1414 substream->number = idx;
1415 substream->rmidi = rmidi;
1416 substream->pstr = stream;
1417 list_add_tail(&substream->list, &stream->substreams);
1418 stream->substream_count++;
1424 * snd_rawmidi_new - create a rawmidi instance
1425 * @card: the card instance
1426 * @id: the id string
1427 * @device: the device index
1428 * @output_count: the number of output streams
1429 * @input_count: the number of input streams
1430 * @rrawmidi: the pointer to store the new rawmidi instance
1432 * Creates a new rawmidi instance.
1433 * Use snd_rawmidi_set_ops() to set the operators to the new instance.
1435 * Returns zero if successful, or a negative error code on failure.
1437 int snd_rawmidi_new(struct snd_card *card, char *id, int device,
1438 int output_count, int input_count,
1439 struct snd_rawmidi ** rrawmidi)
1441 struct snd_rawmidi *rmidi;
1443 static struct snd_device_ops ops = {
1444 .dev_free = snd_rawmidi_dev_free,
1445 .dev_register = snd_rawmidi_dev_register,
1446 .dev_disconnect = snd_rawmidi_dev_disconnect,
1449 if (snd_BUG_ON(!card))
1453 rmidi = kzalloc(sizeof(*rmidi), GFP_KERNEL);
1454 if (rmidi == NULL) {
1455 snd_printk(KERN_ERR "rawmidi: cannot allocate\n");
1459 rmidi->device = device;
1460 mutex_init(&rmidi->open_mutex);
1461 init_waitqueue_head(&rmidi->open_wait);
1462 INIT_LIST_HEAD(&rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT].substreams);
1463 INIT_LIST_HEAD(&rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT].substreams);
1466 strlcpy(rmidi->id, id, sizeof(rmidi->id));
1467 if ((err = snd_rawmidi_alloc_substreams(rmidi,
1468 &rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT],
1469 SNDRV_RAWMIDI_STREAM_INPUT,
1470 input_count)) < 0) {
1471 snd_rawmidi_free(rmidi);
1474 if ((err = snd_rawmidi_alloc_substreams(rmidi,
1475 &rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT],
1476 SNDRV_RAWMIDI_STREAM_OUTPUT,
1477 output_count)) < 0) {
1478 snd_rawmidi_free(rmidi);
1481 if ((err = snd_device_new(card, SNDRV_DEV_RAWMIDI, rmidi, &ops)) < 0) {
1482 snd_rawmidi_free(rmidi);
1490 static void snd_rawmidi_free_substreams(struct snd_rawmidi_str *stream)
1492 struct snd_rawmidi_substream *substream;
1494 while (!list_empty(&stream->substreams)) {
1495 substream = list_entry(stream->substreams.next, struct snd_rawmidi_substream, list);
1496 list_del(&substream->list);
1501 static int snd_rawmidi_free(struct snd_rawmidi *rmidi)
1506 snd_info_free_entry(rmidi->proc_entry);
1507 rmidi->proc_entry = NULL;
1508 mutex_lock(®ister_mutex);
1509 if (rmidi->ops && rmidi->ops->dev_unregister)
1510 rmidi->ops->dev_unregister(rmidi);
1511 mutex_unlock(®ister_mutex);
1513 snd_rawmidi_free_substreams(&rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT]);
1514 snd_rawmidi_free_substreams(&rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT]);
1515 if (rmidi->private_free)
1516 rmidi->private_free(rmidi);
1521 static int snd_rawmidi_dev_free(struct snd_device *device)
1523 struct snd_rawmidi *rmidi = device->device_data;
1524 return snd_rawmidi_free(rmidi);
1527 #if defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE))
1528 static void snd_rawmidi_dev_seq_free(struct snd_seq_device *device)
1530 struct snd_rawmidi *rmidi = device->private_data;
1531 rmidi->seq_dev = NULL;
1535 static int snd_rawmidi_dev_register(struct snd_device *device)
1538 struct snd_info_entry *entry;
1540 struct snd_rawmidi *rmidi = device->device_data;
1542 if (rmidi->device >= SNDRV_RAWMIDI_DEVICES)
1544 mutex_lock(®ister_mutex);
1545 if (snd_rawmidi_search(rmidi->card, rmidi->device)) {
1546 mutex_unlock(®ister_mutex);
1549 list_add_tail(&rmidi->list, &snd_rawmidi_devices);
1550 sprintf(name, "midiC%iD%i", rmidi->card->number, rmidi->device);
1551 if ((err = snd_register_device(SNDRV_DEVICE_TYPE_RAWMIDI,
1552 rmidi->card, rmidi->device,
1553 &snd_rawmidi_f_ops, rmidi, name)) < 0) {
1554 snd_printk(KERN_ERR "unable to register rawmidi device %i:%i\n", rmidi->card->number, rmidi->device);
1555 list_del(&rmidi->list);
1556 mutex_unlock(®ister_mutex);
1559 if (rmidi->ops && rmidi->ops->dev_register &&
1560 (err = rmidi->ops->dev_register(rmidi)) < 0) {
1561 snd_unregister_device(SNDRV_DEVICE_TYPE_RAWMIDI, rmidi->card, rmidi->device);
1562 list_del(&rmidi->list);
1563 mutex_unlock(®ister_mutex);
1566 #ifdef CONFIG_SND_OSSEMUL
1568 if ((int)rmidi->device == midi_map[rmidi->card->number]) {
1569 if (snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI,
1570 rmidi->card, 0, &snd_rawmidi_f_ops,
1572 snd_printk(KERN_ERR "unable to register OSS rawmidi device %i:%i\n", rmidi->card->number, 0);
1575 #ifdef SNDRV_OSS_INFO_DEV_MIDI
1576 snd_oss_info_register(SNDRV_OSS_INFO_DEV_MIDI, rmidi->card->number, rmidi->name);
1580 if ((int)rmidi->device == amidi_map[rmidi->card->number]) {
1581 if (snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI,
1582 rmidi->card, 1, &snd_rawmidi_f_ops,
1584 snd_printk(KERN_ERR "unable to register OSS rawmidi device %i:%i\n", rmidi->card->number, 1);
1589 #endif /* CONFIG_SND_OSSEMUL */
1590 mutex_unlock(®ister_mutex);
1591 sprintf(name, "midi%d", rmidi->device);
1592 entry = snd_info_create_card_entry(rmidi->card, name, rmidi->card->proc_root);
1594 entry->private_data = rmidi;
1595 entry->c.text.read = snd_rawmidi_proc_info_read;
1596 if (snd_info_register(entry) < 0) {
1597 snd_info_free_entry(entry);
1601 rmidi->proc_entry = entry;
1602 #if defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE))
1603 if (!rmidi->ops || !rmidi->ops->dev_register) { /* own registration mechanism */
1604 if (snd_seq_device_new(rmidi->card, rmidi->device, SNDRV_SEQ_DEV_ID_MIDISYNTH, 0, &rmidi->seq_dev) >= 0) {
1605 rmidi->seq_dev->private_data = rmidi;
1606 rmidi->seq_dev->private_free = snd_rawmidi_dev_seq_free;
1607 sprintf(rmidi->seq_dev->name, "MIDI %d-%d", rmidi->card->number, rmidi->device);
1608 snd_device_register(rmidi->card, rmidi->seq_dev);
1615 static int snd_rawmidi_dev_disconnect(struct snd_device *device)
1617 struct snd_rawmidi *rmidi = device->device_data;
1619 mutex_lock(®ister_mutex);
1620 list_del_init(&rmidi->list);
1621 #ifdef CONFIG_SND_OSSEMUL
1622 if (rmidi->ossreg) {
1623 if ((int)rmidi->device == midi_map[rmidi->card->number]) {
1624 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI, rmidi->card, 0);
1625 #ifdef SNDRV_OSS_INFO_DEV_MIDI
1626 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_MIDI, rmidi->card->number);
1629 if ((int)rmidi->device == amidi_map[rmidi->card->number])
1630 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI, rmidi->card, 1);
1633 #endif /* CONFIG_SND_OSSEMUL */
1634 snd_unregister_device(SNDRV_DEVICE_TYPE_RAWMIDI, rmidi->card, rmidi->device);
1635 mutex_unlock(®ister_mutex);
1640 * snd_rawmidi_set_ops - set the rawmidi operators
1641 * @rmidi: the rawmidi instance
1642 * @stream: the stream direction, SNDRV_RAWMIDI_STREAM_XXX
1643 * @ops: the operator table
1645 * Sets the rawmidi operators for the given stream direction.
1647 void snd_rawmidi_set_ops(struct snd_rawmidi *rmidi, int stream,
1648 struct snd_rawmidi_ops *ops)
1650 struct snd_rawmidi_substream *substream;
1652 list_for_each_entry(substream, &rmidi->streams[stream].substreams, list)
1653 substream->ops = ops;
1660 static int __init alsa_rawmidi_init(void)
1663 snd_ctl_register_ioctl(snd_rawmidi_control_ioctl);
1664 snd_ctl_register_ioctl_compat(snd_rawmidi_control_ioctl);
1665 #ifdef CONFIG_SND_OSSEMUL
1667 /* check device map table */
1668 for (i = 0; i < SNDRV_CARDS; i++) {
1669 if (midi_map[i] < 0 || midi_map[i] >= SNDRV_RAWMIDI_DEVICES) {
1670 snd_printk(KERN_ERR "invalid midi_map[%d] = %d\n", i, midi_map[i]);
1673 if (amidi_map[i] < 0 || amidi_map[i] >= SNDRV_RAWMIDI_DEVICES) {
1674 snd_printk(KERN_ERR "invalid amidi_map[%d] = %d\n", i, amidi_map[i]);
1679 #endif /* CONFIG_SND_OSSEMUL */
1683 static void __exit alsa_rawmidi_exit(void)
1685 snd_ctl_unregister_ioctl(snd_rawmidi_control_ioctl);
1686 snd_ctl_unregister_ioctl_compat(snd_rawmidi_control_ioctl);
1689 module_init(alsa_rawmidi_init)
1690 module_exit(alsa_rawmidi_exit)
1692 EXPORT_SYMBOL(snd_rawmidi_output_params);
1693 EXPORT_SYMBOL(snd_rawmidi_input_params);
1694 EXPORT_SYMBOL(snd_rawmidi_drop_output);
1695 EXPORT_SYMBOL(snd_rawmidi_drain_output);
1696 EXPORT_SYMBOL(snd_rawmidi_drain_input);
1697 EXPORT_SYMBOL(snd_rawmidi_receive);
1698 EXPORT_SYMBOL(snd_rawmidi_transmit_empty);
1699 EXPORT_SYMBOL(snd_rawmidi_transmit_peek);
1700 EXPORT_SYMBOL(snd_rawmidi_transmit_ack);
1701 EXPORT_SYMBOL(snd_rawmidi_transmit);
1702 EXPORT_SYMBOL(snd_rawmidi_new);
1703 EXPORT_SYMBOL(snd_rawmidi_set_ops);
1704 EXPORT_SYMBOL(snd_rawmidi_info_select);
1705 EXPORT_SYMBOL(snd_rawmidi_kernel_open);
1706 EXPORT_SYMBOL(snd_rawmidi_kernel_release);
1707 EXPORT_SYMBOL(snd_rawmidi_kernel_read);
1708 EXPORT_SYMBOL(snd_rawmidi_kernel_write);