2 * Abstract layer for MIDI v1.0 stream
3 * Copyright (c) by Jaroslav Kysela <perex@suse.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/driver.h>
23 #include <sound/core.h>
24 #include <linux/major.h>
25 #include <linux/init.h>
26 #include <linux/smp_lock.h>
27 #include <linux/sched.h>
28 #include <linux/slab.h>
29 #include <linux/time.h>
30 #include <linux/wait.h>
31 #include <linux/moduleparam.h>
32 #include <linux/delay.h>
33 #include <linux/wait.h>
34 #include <sound/rawmidi.h>
35 #include <sound/info.h>
36 #include <sound/control.h>
37 #include <sound/minors.h>
38 #include <sound/initval.h>
40 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
41 MODULE_DESCRIPTION("Midlevel RawMidi code for ALSA.");
42 MODULE_LICENSE("GPL");
44 #ifdef CONFIG_SND_OSSEMUL
45 static int midi_map
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
-1)] = 0};
46 static int amidi_map
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
-1)] = 1};
47 module_param_array(midi_map
, int, NULL
, 0444);
48 MODULE_PARM_DESC(midi_map
, "Raw MIDI device number assigned to 1st OSS device.");
49 module_param_array(amidi_map
, int, NULL
, 0444);
50 MODULE_PARM_DESC(amidi_map
, "Raw MIDI device number assigned to 2nd OSS device.");
51 #endif /* CONFIG_SND_OSSEMUL */
53 static int snd_rawmidi_free(struct snd_rawmidi
*rawmidi
);
54 static int snd_rawmidi_dev_free(struct snd_device
*device
);
55 static int snd_rawmidi_dev_register(struct snd_device
*device
);
56 static int snd_rawmidi_dev_disconnect(struct snd_device
*device
);
57 static int snd_rawmidi_dev_unregister(struct snd_device
*device
);
59 static LIST_HEAD(snd_rawmidi_devices
);
60 static DECLARE_MUTEX(register_mutex
);
62 static struct snd_rawmidi
*snd_rawmidi_search(struct snd_card
*card
, int device
)
65 struct snd_rawmidi
*rawmidi
;
67 list_for_each(p
, &snd_rawmidi_devices
) {
68 rawmidi
= list_entry(p
, struct snd_rawmidi
, list
);
69 if (rawmidi
->card
== card
&& rawmidi
->device
== device
)
75 static inline unsigned short snd_rawmidi_file_flags(struct file
*file
)
77 switch (file
->f_mode
& (FMODE_READ
| FMODE_WRITE
)) {
79 return SNDRV_RAWMIDI_LFLG_OUTPUT
;
81 return SNDRV_RAWMIDI_LFLG_INPUT
;
83 return SNDRV_RAWMIDI_LFLG_OPEN
;
87 static inline int snd_rawmidi_ready(struct snd_rawmidi_substream
*substream
)
89 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
90 return runtime
->avail
>= runtime
->avail_min
;
93 static inline int snd_rawmidi_ready_append(struct snd_rawmidi_substream
*substream
,
96 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
97 return runtime
->avail
>= runtime
->avail_min
&&
98 (!substream
->append
|| runtime
->avail
>= count
);
101 static void snd_rawmidi_input_event_tasklet(unsigned long data
)
103 struct snd_rawmidi_substream
*substream
= (struct snd_rawmidi_substream
*)data
;
104 substream
->runtime
->event(substream
);
107 static void snd_rawmidi_output_trigger_tasklet(unsigned long data
)
109 struct snd_rawmidi_substream
*substream
= (struct snd_rawmidi_substream
*)data
;
110 substream
->ops
->trigger(substream
, 1);
113 static int snd_rawmidi_runtime_create(struct snd_rawmidi_substream
*substream
)
115 struct snd_rawmidi_runtime
*runtime
;
117 if ((runtime
= kzalloc(sizeof(*runtime
), GFP_KERNEL
)) == NULL
)
119 spin_lock_init(&runtime
->lock
);
120 init_waitqueue_head(&runtime
->sleep
);
121 if (substream
->stream
== SNDRV_RAWMIDI_STREAM_INPUT
)
122 tasklet_init(&runtime
->tasklet
,
123 snd_rawmidi_input_event_tasklet
,
124 (unsigned long)substream
);
126 tasklet_init(&runtime
->tasklet
,
127 snd_rawmidi_output_trigger_tasklet
,
128 (unsigned long)substream
);
129 runtime
->event
= NULL
;
130 runtime
->buffer_size
= PAGE_SIZE
;
131 runtime
->avail_min
= 1;
132 if (substream
->stream
== SNDRV_RAWMIDI_STREAM_INPUT
)
135 runtime
->avail
= runtime
->buffer_size
;
136 if ((runtime
->buffer
= kmalloc(runtime
->buffer_size
, GFP_KERNEL
)) == NULL
) {
140 runtime
->appl_ptr
= runtime
->hw_ptr
= 0;
141 substream
->runtime
= runtime
;
145 static int snd_rawmidi_runtime_free(struct snd_rawmidi_substream
*substream
)
147 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
149 kfree(runtime
->buffer
);
151 substream
->runtime
= NULL
;
155 static inline void snd_rawmidi_output_trigger(struct snd_rawmidi_substream
*substream
,int up
)
158 tasklet_hi_schedule(&substream
->runtime
->tasklet
);
160 tasklet_kill(&substream
->runtime
->tasklet
);
161 substream
->ops
->trigger(substream
, 0);
165 static void snd_rawmidi_input_trigger(struct snd_rawmidi_substream
*substream
, int up
)
167 substream
->ops
->trigger(substream
, up
);
168 if (!up
&& substream
->runtime
->event
)
169 tasklet_kill(&substream
->runtime
->tasklet
);
172 int snd_rawmidi_drop_output(struct snd_rawmidi_substream
*substream
)
175 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
177 snd_rawmidi_output_trigger(substream
, 0);
179 spin_lock_irqsave(&runtime
->lock
, flags
);
180 runtime
->appl_ptr
= runtime
->hw_ptr
= 0;
181 runtime
->avail
= runtime
->buffer_size
;
182 spin_unlock_irqrestore(&runtime
->lock
, flags
);
186 int snd_rawmidi_drain_output(struct snd_rawmidi_substream
*substream
)
190 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
194 timeout
= wait_event_interruptible_timeout(runtime
->sleep
,
195 (runtime
->avail
>= runtime
->buffer_size
),
197 if (signal_pending(current
))
199 if (runtime
->avail
< runtime
->buffer_size
&& !timeout
) {
200 snd_printk(KERN_WARNING
"rawmidi drain error (avail = %li, buffer_size = %li)\n", (long)runtime
->avail
, (long)runtime
->buffer_size
);
204 if (err
!= -ERESTARTSYS
) {
205 /* we need wait a while to make sure that Tx FIFOs are empty */
206 if (substream
->ops
->drain
)
207 substream
->ops
->drain(substream
);
210 snd_rawmidi_drop_output(substream
);
215 int snd_rawmidi_drain_input(struct snd_rawmidi_substream
*substream
)
218 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
220 snd_rawmidi_input_trigger(substream
, 0);
222 spin_lock_irqsave(&runtime
->lock
, flags
);
223 runtime
->appl_ptr
= runtime
->hw_ptr
= 0;
225 spin_unlock_irqrestore(&runtime
->lock
, flags
);
229 int snd_rawmidi_kernel_open(struct snd_card
*card
, int device
, int subdevice
,
230 int mode
, struct snd_rawmidi_file
* rfile
)
232 struct snd_rawmidi
*rmidi
;
233 struct list_head
*list1
, *list2
;
234 struct snd_rawmidi_substream
*sinput
= NULL
, *soutput
= NULL
;
235 struct snd_rawmidi_runtime
*input
= NULL
, *output
= NULL
;
239 rfile
->input
= rfile
->output
= NULL
;
240 down(®ister_mutex
);
241 rmidi
= snd_rawmidi_search(card
, device
);
247 if (!try_module_get(rmidi
->card
->module
)) {
251 if (!(mode
& SNDRV_RAWMIDI_LFLG_NOOPENLOCK
))
252 down(&rmidi
->open_mutex
);
253 if (mode
& SNDRV_RAWMIDI_LFLG_INPUT
) {
254 if (!(rmidi
->info_flags
& SNDRV_RAWMIDI_INFO_INPUT
)) {
258 if (subdevice
>= 0 && (unsigned int)subdevice
>= rmidi
->streams
[SNDRV_RAWMIDI_STREAM_INPUT
].substream_count
) {
262 if (rmidi
->streams
[SNDRV_RAWMIDI_STREAM_INPUT
].substream_opened
>=
263 rmidi
->streams
[SNDRV_RAWMIDI_STREAM_INPUT
].substream_count
) {
268 if (mode
& SNDRV_RAWMIDI_LFLG_OUTPUT
) {
269 if (!(rmidi
->info_flags
& SNDRV_RAWMIDI_INFO_OUTPUT
)) {
273 if (subdevice
>= 0 && (unsigned int)subdevice
>= rmidi
->streams
[SNDRV_RAWMIDI_STREAM_OUTPUT
].substream_count
) {
277 if (rmidi
->streams
[SNDRV_RAWMIDI_STREAM_OUTPUT
].substream_opened
>=
278 rmidi
->streams
[SNDRV_RAWMIDI_STREAM_OUTPUT
].substream_count
) {
283 list1
= rmidi
->streams
[SNDRV_RAWMIDI_STREAM_INPUT
].substreams
.next
;
285 if (list1
== &rmidi
->streams
[SNDRV_RAWMIDI_STREAM_INPUT
].substreams
) {
287 if (mode
& SNDRV_RAWMIDI_LFLG_INPUT
) {
293 sinput
= list_entry(list1
, struct snd_rawmidi_substream
, list
);
294 if ((mode
& SNDRV_RAWMIDI_LFLG_INPUT
) && sinput
->opened
)
296 if (subdevice
< 0 || (subdevice
>= 0 && subdevice
== sinput
->number
))
301 list2
= rmidi
->streams
[SNDRV_RAWMIDI_STREAM_OUTPUT
].substreams
.next
;
303 if (list2
== &rmidi
->streams
[SNDRV_RAWMIDI_STREAM_OUTPUT
].substreams
) {
305 if (mode
& SNDRV_RAWMIDI_LFLG_OUTPUT
) {
311 soutput
= list_entry(list2
, struct snd_rawmidi_substream
, list
);
312 if (mode
& SNDRV_RAWMIDI_LFLG_OUTPUT
) {
313 if (mode
& SNDRV_RAWMIDI_LFLG_APPEND
) {
314 if (soutput
->opened
&& !soutput
->append
)
321 if (subdevice
< 0 || (subdevice
>= 0 && subdevice
== soutput
->number
))
326 if (mode
& SNDRV_RAWMIDI_LFLG_INPUT
) {
327 if ((err
= snd_rawmidi_runtime_create(sinput
)) < 0)
329 input
= sinput
->runtime
;
330 if ((err
= sinput
->ops
->open(sinput
)) < 0)
333 rmidi
->streams
[SNDRV_RAWMIDI_STREAM_INPUT
].substream_opened
++;
337 if (mode
& SNDRV_RAWMIDI_LFLG_OUTPUT
) {
340 if ((err
= snd_rawmidi_runtime_create(soutput
)) < 0) {
341 if (mode
& SNDRV_RAWMIDI_LFLG_INPUT
)
342 sinput
->ops
->close(sinput
);
345 output
= soutput
->runtime
;
346 if ((err
= soutput
->ops
->open(soutput
)) < 0) {
347 if (mode
& SNDRV_RAWMIDI_LFLG_INPUT
)
348 sinput
->ops
->close(sinput
);
353 if (mode
& SNDRV_RAWMIDI_LFLG_APPEND
)
355 if (soutput
->use_count
++ == 0)
356 soutput
->active_sensing
= 1;
357 rmidi
->streams
[SNDRV_RAWMIDI_STREAM_OUTPUT
].substream_opened
++;
361 if (!(mode
& SNDRV_RAWMIDI_LFLG_NOOPENLOCK
))
362 up(&rmidi
->open_mutex
);
364 rfile
->rmidi
= rmidi
;
365 rfile
->input
= sinput
;
366 rfile
->output
= soutput
;
372 snd_rawmidi_runtime_free(sinput
);
374 snd_rawmidi_runtime_free(soutput
);
375 module_put(rmidi
->card
->module
);
376 if (!(mode
& SNDRV_RAWMIDI_LFLG_NOOPENLOCK
))
377 up(&rmidi
->open_mutex
);
382 static int snd_rawmidi_open(struct inode
*inode
, struct file
*file
)
384 int maj
= imajor(inode
);
385 struct snd_card
*card
;
387 unsigned short fflags
;
389 struct snd_rawmidi
*rmidi
;
390 struct snd_rawmidi_file
*rawmidi_file
;
392 struct list_head
*list
;
393 struct snd_ctl_file
*kctl
;
395 if (maj
== snd_major
) {
396 rmidi
= snd_lookup_minor_data(iminor(inode
),
397 SNDRV_DEVICE_TYPE_RAWMIDI
);
398 #ifdef CONFIG_SND_OSSEMUL
399 } else if (maj
== SOUND_MAJOR
) {
400 rmidi
= snd_lookup_oss_minor_data(iminor(inode
),
401 SNDRV_OSS_DEVICE_TYPE_MIDI
);
408 if ((file
->f_flags
& O_APPEND
) && !(file
->f_flags
& O_NONBLOCK
))
409 return -EINVAL
; /* invalid combination */
411 err
= snd_card_file_add(card
, file
);
414 fflags
= snd_rawmidi_file_flags(file
);
415 if ((file
->f_flags
& O_APPEND
) || maj
== SOUND_MAJOR
) /* OSS emul? */
416 fflags
|= SNDRV_RAWMIDI_LFLG_APPEND
;
417 fflags
|= SNDRV_RAWMIDI_LFLG_NOOPENLOCK
;
418 rawmidi_file
= kmalloc(sizeof(*rawmidi_file
), GFP_KERNEL
);
419 if (rawmidi_file
== NULL
) {
420 snd_card_file_remove(card
, file
);
423 init_waitqueue_entry(&wait
, current
);
424 add_wait_queue(&rmidi
->open_wait
, &wait
);
425 down(&rmidi
->open_mutex
);
428 down_read(&card
->controls_rwsem
);
429 list_for_each(list
, &card
->ctl_files
) {
430 kctl
= snd_ctl_file(list
);
431 if (kctl
->pid
== current
->pid
) {
432 subdevice
= kctl
->prefer_rawmidi_subdevice
;
436 up_read(&card
->controls_rwsem
);
437 err
= snd_rawmidi_kernel_open(rmidi
->card
, rmidi
->device
,
438 subdevice
, fflags
, rawmidi_file
);
441 if (err
== -EAGAIN
) {
442 if (file
->f_flags
& O_NONBLOCK
) {
448 set_current_state(TASK_INTERRUPTIBLE
);
449 up(&rmidi
->open_mutex
);
451 down(&rmidi
->open_mutex
);
452 if (signal_pending(current
)) {
457 #ifdef CONFIG_SND_OSSEMUL
458 if (rawmidi_file
->input
&& rawmidi_file
->input
->runtime
)
459 rawmidi_file
->input
->runtime
->oss
= (maj
== SOUND_MAJOR
);
460 if (rawmidi_file
->output
&& rawmidi_file
->output
->runtime
)
461 rawmidi_file
->output
->runtime
->oss
= (maj
== SOUND_MAJOR
);
463 remove_wait_queue(&rmidi
->open_wait
, &wait
);
465 file
->private_data
= rawmidi_file
;
467 snd_card_file_remove(card
, file
);
470 up(&rmidi
->open_mutex
);
474 int snd_rawmidi_kernel_release(struct snd_rawmidi_file
* rfile
)
476 struct snd_rawmidi
*rmidi
;
477 struct snd_rawmidi_substream
*substream
;
478 struct snd_rawmidi_runtime
*runtime
;
480 snd_assert(rfile
!= NULL
, return -ENXIO
);
481 snd_assert(rfile
->input
!= NULL
|| rfile
->output
!= NULL
, return -ENXIO
);
482 rmidi
= rfile
->rmidi
;
483 down(&rmidi
->open_mutex
);
484 if (rfile
->input
!= NULL
) {
485 substream
= rfile
->input
;
487 runtime
= substream
->runtime
;
488 snd_rawmidi_input_trigger(substream
, 0);
489 substream
->ops
->close(substream
);
490 if (runtime
->private_free
!= NULL
)
491 runtime
->private_free(substream
);
492 snd_rawmidi_runtime_free(substream
);
493 substream
->opened
= 0;
494 rmidi
->streams
[SNDRV_RAWMIDI_STREAM_INPUT
].substream_opened
--;
496 if (rfile
->output
!= NULL
) {
497 substream
= rfile
->output
;
498 rfile
->output
= NULL
;
499 if (--substream
->use_count
== 0) {
500 runtime
= substream
->runtime
;
501 if (substream
->active_sensing
) {
502 unsigned char buf
= 0xfe;
503 /* sending single active sensing message to shut the device up */
504 snd_rawmidi_kernel_write(substream
, &buf
, 1);
506 if (snd_rawmidi_drain_output(substream
) == -ERESTARTSYS
)
507 snd_rawmidi_output_trigger(substream
, 0);
508 substream
->ops
->close(substream
);
509 if (runtime
->private_free
!= NULL
)
510 runtime
->private_free(substream
);
511 snd_rawmidi_runtime_free(substream
);
512 substream
->opened
= 0;
513 substream
->append
= 0;
515 rmidi
->streams
[SNDRV_RAWMIDI_STREAM_OUTPUT
].substream_opened
--;
517 up(&rmidi
->open_mutex
);
518 module_put(rmidi
->card
->module
);
522 static int snd_rawmidi_release(struct inode
*inode
, struct file
*file
)
524 struct snd_rawmidi_file
*rfile
;
525 struct snd_rawmidi
*rmidi
;
528 rfile
= file
->private_data
;
529 err
= snd_rawmidi_kernel_release(rfile
);
530 rmidi
= rfile
->rmidi
;
531 wake_up(&rmidi
->open_wait
);
533 snd_card_file_remove(rmidi
->card
, file
);
537 int snd_rawmidi_info(struct snd_rawmidi_substream
*substream
,
538 struct snd_rawmidi_info
*info
)
540 struct snd_rawmidi
*rmidi
;
542 if (substream
== NULL
)
544 rmidi
= substream
->rmidi
;
545 memset(info
, 0, sizeof(*info
));
546 info
->card
= rmidi
->card
->number
;
547 info
->device
= rmidi
->device
;
548 info
->subdevice
= substream
->number
;
549 info
->stream
= substream
->stream
;
550 info
->flags
= rmidi
->info_flags
;
551 strcpy(info
->id
, rmidi
->id
);
552 strcpy(info
->name
, rmidi
->name
);
553 strcpy(info
->subname
, substream
->name
);
554 info
->subdevices_count
= substream
->pstr
->substream_count
;
555 info
->subdevices_avail
= (substream
->pstr
->substream_count
-
556 substream
->pstr
->substream_opened
);
560 static int snd_rawmidi_info_user(struct snd_rawmidi_substream
*substream
,
561 struct snd_rawmidi_info __user
* _info
)
563 struct snd_rawmidi_info info
;
565 if ((err
= snd_rawmidi_info(substream
, &info
)) < 0)
567 if (copy_to_user(_info
, &info
, sizeof(struct snd_rawmidi_info
)))
572 int snd_rawmidi_info_select(struct snd_card
*card
, struct snd_rawmidi_info
*info
)
574 struct snd_rawmidi
*rmidi
;
575 struct snd_rawmidi_str
*pstr
;
576 struct snd_rawmidi_substream
*substream
;
577 struct list_head
*list
;
579 down(®ister_mutex
);
580 rmidi
= snd_rawmidi_search(card
, info
->device
);
584 if (info
->stream
< 0 || info
->stream
> 1)
586 pstr
= &rmidi
->streams
[info
->stream
];
587 if (pstr
->substream_count
== 0)
589 if (info
->subdevice
>= pstr
->substream_count
)
591 list_for_each(list
, &pstr
->substreams
) {
592 substream
= list_entry(list
, struct snd_rawmidi_substream
, list
);
593 if ((unsigned int)substream
->number
== info
->subdevice
)
594 return snd_rawmidi_info(substream
, info
);
599 static int snd_rawmidi_info_select_user(struct snd_card
*card
,
600 struct snd_rawmidi_info __user
*_info
)
603 struct snd_rawmidi_info info
;
604 if (get_user(info
.device
, &_info
->device
))
606 if (get_user(info
.stream
, &_info
->stream
))
608 if (get_user(info
.subdevice
, &_info
->subdevice
))
610 if ((err
= snd_rawmidi_info_select(card
, &info
)) < 0)
612 if (copy_to_user(_info
, &info
, sizeof(struct snd_rawmidi_info
)))
617 int snd_rawmidi_output_params(struct snd_rawmidi_substream
*substream
,
618 struct snd_rawmidi_params
* params
)
621 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
623 if (substream
->append
&& substream
->use_count
> 1)
625 snd_rawmidi_drain_output(substream
);
626 if (params
->buffer_size
< 32 || params
->buffer_size
> 1024L * 1024L) {
629 if (params
->avail_min
< 1 || params
->avail_min
> params
->buffer_size
) {
632 if (params
->buffer_size
!= runtime
->buffer_size
) {
633 if ((newbuf
= (char *) kmalloc(params
->buffer_size
, GFP_KERNEL
)) == NULL
)
635 kfree(runtime
->buffer
);
636 runtime
->buffer
= newbuf
;
637 runtime
->buffer_size
= params
->buffer_size
;
639 runtime
->avail_min
= params
->avail_min
;
640 substream
->active_sensing
= !params
->no_active_sensing
;
644 int snd_rawmidi_input_params(struct snd_rawmidi_substream
*substream
,
645 struct snd_rawmidi_params
* params
)
648 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
650 snd_rawmidi_drain_input(substream
);
651 if (params
->buffer_size
< 32 || params
->buffer_size
> 1024L * 1024L) {
654 if (params
->avail_min
< 1 || params
->avail_min
> params
->buffer_size
) {
657 if (params
->buffer_size
!= runtime
->buffer_size
) {
658 if ((newbuf
= (char *) kmalloc(params
->buffer_size
, GFP_KERNEL
)) == NULL
)
660 kfree(runtime
->buffer
);
661 runtime
->buffer
= newbuf
;
662 runtime
->buffer_size
= params
->buffer_size
;
664 runtime
->avail_min
= params
->avail_min
;
668 static int snd_rawmidi_output_status(struct snd_rawmidi_substream
*substream
,
669 struct snd_rawmidi_status
* status
)
671 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
673 memset(status
, 0, sizeof(*status
));
674 status
->stream
= SNDRV_RAWMIDI_STREAM_OUTPUT
;
675 spin_lock_irq(&runtime
->lock
);
676 status
->avail
= runtime
->avail
;
677 spin_unlock_irq(&runtime
->lock
);
681 static int snd_rawmidi_input_status(struct snd_rawmidi_substream
*substream
,
682 struct snd_rawmidi_status
* status
)
684 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
686 memset(status
, 0, sizeof(*status
));
687 status
->stream
= SNDRV_RAWMIDI_STREAM_INPUT
;
688 spin_lock_irq(&runtime
->lock
);
689 status
->avail
= runtime
->avail
;
690 status
->xruns
= runtime
->xruns
;
692 spin_unlock_irq(&runtime
->lock
);
696 static long snd_rawmidi_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
698 struct snd_rawmidi_file
*rfile
;
699 void __user
*argp
= (void __user
*)arg
;
701 rfile
= file
->private_data
;
702 if (((cmd
>> 8) & 0xff) != 'W')
705 case SNDRV_RAWMIDI_IOCTL_PVERSION
:
706 return put_user(SNDRV_RAWMIDI_VERSION
, (int __user
*)argp
) ? -EFAULT
: 0;
707 case SNDRV_RAWMIDI_IOCTL_INFO
:
710 struct snd_rawmidi_info __user
*info
= argp
;
711 if (get_user(stream
, &info
->stream
))
714 case SNDRV_RAWMIDI_STREAM_INPUT
:
715 return snd_rawmidi_info_user(rfile
->input
, info
);
716 case SNDRV_RAWMIDI_STREAM_OUTPUT
:
717 return snd_rawmidi_info_user(rfile
->output
, info
);
722 case SNDRV_RAWMIDI_IOCTL_PARAMS
:
724 struct snd_rawmidi_params params
;
725 if (copy_from_user(¶ms
, argp
, sizeof(struct snd_rawmidi_params
)))
727 switch (params
.stream
) {
728 case SNDRV_RAWMIDI_STREAM_OUTPUT
:
729 if (rfile
->output
== NULL
)
731 return snd_rawmidi_output_params(rfile
->output
, ¶ms
);
732 case SNDRV_RAWMIDI_STREAM_INPUT
:
733 if (rfile
->input
== NULL
)
735 return snd_rawmidi_input_params(rfile
->input
, ¶ms
);
740 case SNDRV_RAWMIDI_IOCTL_STATUS
:
743 struct snd_rawmidi_status status
;
744 if (copy_from_user(&status
, argp
, sizeof(struct snd_rawmidi_status
)))
746 switch (status
.stream
) {
747 case SNDRV_RAWMIDI_STREAM_OUTPUT
:
748 if (rfile
->output
== NULL
)
750 err
= snd_rawmidi_output_status(rfile
->output
, &status
);
752 case SNDRV_RAWMIDI_STREAM_INPUT
:
753 if (rfile
->input
== NULL
)
755 err
= snd_rawmidi_input_status(rfile
->input
, &status
);
762 if (copy_to_user(argp
, &status
, sizeof(struct snd_rawmidi_status
)))
766 case SNDRV_RAWMIDI_IOCTL_DROP
:
769 if (get_user(val
, (int __user
*) argp
))
772 case SNDRV_RAWMIDI_STREAM_OUTPUT
:
773 if (rfile
->output
== NULL
)
775 return snd_rawmidi_drop_output(rfile
->output
);
780 case SNDRV_RAWMIDI_IOCTL_DRAIN
:
783 if (get_user(val
, (int __user
*) argp
))
786 case SNDRV_RAWMIDI_STREAM_OUTPUT
:
787 if (rfile
->output
== NULL
)
789 return snd_rawmidi_drain_output(rfile
->output
);
790 case SNDRV_RAWMIDI_STREAM_INPUT
:
791 if (rfile
->input
== NULL
)
793 return snd_rawmidi_drain_input(rfile
->input
);
798 #ifdef CONFIG_SND_DEBUG
800 snd_printk(KERN_WARNING
"rawmidi: unknown command = 0x%x\n", cmd
);
806 static int snd_rawmidi_control_ioctl(struct snd_card
*card
,
807 struct snd_ctl_file
*control
,
811 void __user
*argp
= (void __user
*)arg
;
814 case SNDRV_CTL_IOCTL_RAWMIDI_NEXT_DEVICE
:
818 if (get_user(device
, (int __user
*)argp
))
820 down(®ister_mutex
);
821 device
= device
< 0 ? 0 : device
+ 1;
822 while (device
< SNDRV_RAWMIDI_DEVICES
) {
823 if (snd_rawmidi_search(card
, device
))
827 if (device
== SNDRV_RAWMIDI_DEVICES
)
830 if (put_user(device
, (int __user
*)argp
))
834 case SNDRV_CTL_IOCTL_RAWMIDI_PREFER_SUBDEVICE
:
838 if (get_user(val
, (int __user
*)argp
))
840 control
->prefer_rawmidi_subdevice
= val
;
843 case SNDRV_CTL_IOCTL_RAWMIDI_INFO
:
844 return snd_rawmidi_info_select_user(card
, argp
);
850 * snd_rawmidi_receive - receive the input data from the device
851 * @substream: the rawmidi substream
852 * @buffer: the buffer pointer
853 * @count: the data size to read
855 * Reads the data from the internal buffer.
857 * Returns the size of read data, or a negative error code on failure.
859 int snd_rawmidi_receive(struct snd_rawmidi_substream
*substream
,
860 const unsigned char *buffer
, int count
)
863 int result
= 0, count1
;
864 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
866 if (runtime
->buffer
== NULL
) {
867 snd_printd("snd_rawmidi_receive: input is not active!!!\n");
870 spin_lock_irqsave(&runtime
->lock
, flags
);
871 if (count
== 1) { /* special case, faster code */
873 if (runtime
->avail
< runtime
->buffer_size
) {
874 runtime
->buffer
[runtime
->hw_ptr
++] = buffer
[0];
875 runtime
->hw_ptr
%= runtime
->buffer_size
;
882 substream
->bytes
+= count
;
883 count1
= runtime
->buffer_size
- runtime
->hw_ptr
;
886 if (count1
> (int)(runtime
->buffer_size
- runtime
->avail
))
887 count1
= runtime
->buffer_size
- runtime
->avail
;
888 memcpy(runtime
->buffer
+ runtime
->hw_ptr
, buffer
, count1
);
889 runtime
->hw_ptr
+= count1
;
890 runtime
->hw_ptr
%= runtime
->buffer_size
;
891 runtime
->avail
+= count1
;
897 if (count1
> (int)(runtime
->buffer_size
- runtime
->avail
)) {
898 count1
= runtime
->buffer_size
- runtime
->avail
;
899 runtime
->xruns
+= count
- count1
;
902 memcpy(runtime
->buffer
, buffer
, count1
);
903 runtime
->hw_ptr
= count1
;
904 runtime
->avail
+= count1
;
911 tasklet_hi_schedule(&runtime
->tasklet
);
912 else if (snd_rawmidi_ready(substream
))
913 wake_up(&runtime
->sleep
);
915 spin_unlock_irqrestore(&runtime
->lock
, flags
);
919 static long snd_rawmidi_kernel_read1(struct snd_rawmidi_substream
*substream
,
920 unsigned char *buf
, long count
, int kernel
)
923 long result
= 0, count1
;
924 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
926 while (count
> 0 && runtime
->avail
) {
927 count1
= runtime
->buffer_size
- runtime
->appl_ptr
;
930 spin_lock_irqsave(&runtime
->lock
, flags
);
931 if (count1
> (int)runtime
->avail
)
932 count1
= runtime
->avail
;
934 memcpy(buf
+ result
, runtime
->buffer
+ runtime
->appl_ptr
, count1
);
936 spin_unlock_irqrestore(&runtime
->lock
, flags
);
937 if (copy_to_user((char __user
*)buf
+ result
,
938 runtime
->buffer
+ runtime
->appl_ptr
, count1
)) {
939 return result
> 0 ? result
: -EFAULT
;
941 spin_lock_irqsave(&runtime
->lock
, flags
);
943 runtime
->appl_ptr
+= count1
;
944 runtime
->appl_ptr
%= runtime
->buffer_size
;
945 runtime
->avail
-= count1
;
946 spin_unlock_irqrestore(&runtime
->lock
, flags
);
953 long snd_rawmidi_kernel_read(struct snd_rawmidi_substream
*substream
,
954 unsigned char *buf
, long count
)
956 snd_rawmidi_input_trigger(substream
, 1);
957 return snd_rawmidi_kernel_read1(substream
, buf
, count
, 1);
960 static ssize_t
snd_rawmidi_read(struct file
*file
, char __user
*buf
, size_t count
,
965 struct snd_rawmidi_file
*rfile
;
966 struct snd_rawmidi_substream
*substream
;
967 struct snd_rawmidi_runtime
*runtime
;
969 rfile
= file
->private_data
;
970 substream
= rfile
->input
;
971 if (substream
== NULL
)
973 runtime
= substream
->runtime
;
974 snd_rawmidi_input_trigger(substream
, 1);
977 spin_lock_irq(&runtime
->lock
);
978 while (!snd_rawmidi_ready(substream
)) {
980 if ((file
->f_flags
& O_NONBLOCK
) != 0 || result
> 0) {
981 spin_unlock_irq(&runtime
->lock
);
982 return result
> 0 ? result
: -EAGAIN
;
984 init_waitqueue_entry(&wait
, current
);
985 add_wait_queue(&runtime
->sleep
, &wait
);
986 set_current_state(TASK_INTERRUPTIBLE
);
987 spin_unlock_irq(&runtime
->lock
);
989 remove_wait_queue(&runtime
->sleep
, &wait
);
990 if (signal_pending(current
))
991 return result
> 0 ? result
: -ERESTARTSYS
;
993 return result
> 0 ? result
: -EIO
;
994 spin_lock_irq(&runtime
->lock
);
996 spin_unlock_irq(&runtime
->lock
);
997 count1
= snd_rawmidi_kernel_read1(substream
,
998 (unsigned char __force
*)buf
,
1001 return result
> 0 ? result
: count1
;
1010 * snd_rawmidi_transmit_empty - check whether the output buffer is empty
1011 * @substream: the rawmidi substream
1013 * Returns 1 if the internal output buffer is empty, 0 if not.
1015 int snd_rawmidi_transmit_empty(struct snd_rawmidi_substream
*substream
)
1017 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
1019 unsigned long flags
;
1021 if (runtime
->buffer
== NULL
) {
1022 snd_printd("snd_rawmidi_transmit_empty: output is not active!!!\n");
1025 spin_lock_irqsave(&runtime
->lock
, flags
);
1026 result
= runtime
->avail
>= runtime
->buffer_size
;
1027 spin_unlock_irqrestore(&runtime
->lock
, flags
);
1032 * snd_rawmidi_transmit_peek - copy data from the internal buffer
1033 * @substream: the rawmidi substream
1034 * @buffer: the buffer pointer
1035 * @count: data size to transfer
1037 * Copies data from the internal output buffer to the given buffer.
1039 * Call this in the interrupt handler when the midi output is ready,
1040 * and call snd_rawmidi_transmit_ack() after the transmission is
1043 * Returns the size of copied data, or a negative error code on failure.
1045 int snd_rawmidi_transmit_peek(struct snd_rawmidi_substream
*substream
,
1046 unsigned char *buffer
, int count
)
1048 unsigned long flags
;
1050 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
1052 if (runtime
->buffer
== NULL
) {
1053 snd_printd("snd_rawmidi_transmit_peek: output is not active!!!\n");
1057 spin_lock_irqsave(&runtime
->lock
, flags
);
1058 if (runtime
->avail
>= runtime
->buffer_size
) {
1059 /* warning: lowlevel layer MUST trigger down the hardware */
1062 if (count
== 1) { /* special case, faster code */
1063 *buffer
= runtime
->buffer
[runtime
->hw_ptr
];
1066 count1
= runtime
->buffer_size
- runtime
->hw_ptr
;
1069 if (count1
> (int)(runtime
->buffer_size
- runtime
->avail
))
1070 count1
= runtime
->buffer_size
- runtime
->avail
;
1071 memcpy(buffer
, runtime
->buffer
+ runtime
->hw_ptr
, count1
);
1075 if (count
> (int)(runtime
->buffer_size
- runtime
->avail
- count1
))
1076 count
= runtime
->buffer_size
- runtime
->avail
- count1
;
1077 memcpy(buffer
+ count1
, runtime
->buffer
, count
);
1082 spin_unlock_irqrestore(&runtime
->lock
, flags
);
1087 * snd_rawmidi_transmit_ack - acknowledge the transmission
1088 * @substream: the rawmidi substream
1089 * @count: the tranferred count
1091 * Advances the hardware pointer for the internal output buffer with
1092 * the given size and updates the condition.
1093 * Call after the transmission is finished.
1095 * Returns the advanced size if successful, or a negative error code on failure.
1097 int snd_rawmidi_transmit_ack(struct snd_rawmidi_substream
*substream
, int count
)
1099 unsigned long flags
;
1100 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
1102 if (runtime
->buffer
== NULL
) {
1103 snd_printd("snd_rawmidi_transmit_ack: output is not active!!!\n");
1106 spin_lock_irqsave(&runtime
->lock
, flags
);
1107 snd_assert(runtime
->avail
+ count
<= runtime
->buffer_size
, );
1108 runtime
->hw_ptr
+= count
;
1109 runtime
->hw_ptr
%= runtime
->buffer_size
;
1110 runtime
->avail
+= count
;
1111 substream
->bytes
+= count
;
1113 if (runtime
->drain
|| snd_rawmidi_ready(substream
))
1114 wake_up(&runtime
->sleep
);
1116 spin_unlock_irqrestore(&runtime
->lock
, flags
);
1121 * snd_rawmidi_transmit - copy from the buffer to the device
1122 * @substream: the rawmidi substream
1123 * @buffer: the buffer pointer
1124 * @count: the data size to transfer
1126 * Copies data from the buffer to the device and advances the pointer.
1128 * Returns the copied size if successful, or a negative error code on failure.
1130 int snd_rawmidi_transmit(struct snd_rawmidi_substream
*substream
,
1131 unsigned char *buffer
, int count
)
1133 count
= snd_rawmidi_transmit_peek(substream
, buffer
, count
);
1136 return snd_rawmidi_transmit_ack(substream
, count
);
1139 static long snd_rawmidi_kernel_write1(struct snd_rawmidi_substream
*substream
,
1140 const unsigned char *buf
, long count
, int kernel
)
1142 unsigned long flags
;
1143 long count1
, result
;
1144 struct snd_rawmidi_runtime
*runtime
= substream
->runtime
;
1146 snd_assert(buf
!= NULL
, return -EINVAL
);
1147 snd_assert(runtime
->buffer
!= NULL
, return -EINVAL
);
1150 spin_lock_irqsave(&runtime
->lock
, flags
);
1151 if (substream
->append
) {
1152 if ((long)runtime
->avail
< count
) {
1153 spin_unlock_irqrestore(&runtime
->lock
, flags
);
1157 while (count
> 0 && runtime
->avail
> 0) {
1158 count1
= runtime
->buffer_size
- runtime
->appl_ptr
;
1161 if (count1
> (long)runtime
->avail
)
1162 count1
= runtime
->avail
;
1164 memcpy(runtime
->buffer
+ runtime
->appl_ptr
, buf
, count1
);
1166 spin_unlock_irqrestore(&runtime
->lock
, flags
);
1167 if (copy_from_user(runtime
->buffer
+ runtime
->appl_ptr
,
1168 (char __user
*)buf
, count1
)) {
1169 spin_lock_irqsave(&runtime
->lock
, flags
);
1170 result
= result
> 0 ? result
: -EFAULT
;
1173 spin_lock_irqsave(&runtime
->lock
, flags
);
1175 runtime
->appl_ptr
+= count1
;
1176 runtime
->appl_ptr
%= runtime
->buffer_size
;
1177 runtime
->avail
-= count1
;
1183 count1
= runtime
->avail
< runtime
->buffer_size
;
1184 spin_unlock_irqrestore(&runtime
->lock
, flags
);
1186 snd_rawmidi_output_trigger(substream
, 1);
1190 long snd_rawmidi_kernel_write(struct snd_rawmidi_substream
*substream
,
1191 const unsigned char *buf
, long count
)
1193 return snd_rawmidi_kernel_write1(substream
, buf
, count
, 1);
1196 static ssize_t
snd_rawmidi_write(struct file
*file
, const char __user
*buf
,
1197 size_t count
, loff_t
*offset
)
1199 long result
, timeout
;
1201 struct snd_rawmidi_file
*rfile
;
1202 struct snd_rawmidi_runtime
*runtime
;
1203 struct snd_rawmidi_substream
*substream
;
1205 rfile
= file
->private_data
;
1206 substream
= rfile
->output
;
1207 runtime
= substream
->runtime
;
1208 /* we cannot put an atomic message to our buffer */
1209 if (substream
->append
&& count
> runtime
->buffer_size
)
1213 spin_lock_irq(&runtime
->lock
);
1214 while (!snd_rawmidi_ready_append(substream
, count
)) {
1216 if (file
->f_flags
& O_NONBLOCK
) {
1217 spin_unlock_irq(&runtime
->lock
);
1218 return result
> 0 ? result
: -EAGAIN
;
1220 init_waitqueue_entry(&wait
, current
);
1221 add_wait_queue(&runtime
->sleep
, &wait
);
1222 set_current_state(TASK_INTERRUPTIBLE
);
1223 spin_unlock_irq(&runtime
->lock
);
1224 timeout
= schedule_timeout(30 * HZ
);
1225 remove_wait_queue(&runtime
->sleep
, &wait
);
1226 if (signal_pending(current
))
1227 return result
> 0 ? result
: -ERESTARTSYS
;
1228 if (!runtime
->avail
&& !timeout
)
1229 return result
> 0 ? result
: -EIO
;
1230 spin_lock_irq(&runtime
->lock
);
1232 spin_unlock_irq(&runtime
->lock
);
1233 count1
= snd_rawmidi_kernel_write1(substream
,
1234 (unsigned char __force
*)buf
,
1237 return result
> 0 ? result
: count1
;
1240 if ((size_t)count1
< count
&& (file
->f_flags
& O_NONBLOCK
))
1244 if (file
->f_flags
& O_SYNC
) {
1245 spin_lock_irq(&runtime
->lock
);
1246 while (runtime
->avail
!= runtime
->buffer_size
) {
1248 unsigned int last_avail
= runtime
->avail
;
1249 init_waitqueue_entry(&wait
, current
);
1250 add_wait_queue(&runtime
->sleep
, &wait
);
1251 set_current_state(TASK_INTERRUPTIBLE
);
1252 spin_unlock_irq(&runtime
->lock
);
1253 timeout
= schedule_timeout(30 * HZ
);
1254 remove_wait_queue(&runtime
->sleep
, &wait
);
1255 if (signal_pending(current
))
1256 return result
> 0 ? result
: -ERESTARTSYS
;
1257 if (runtime
->avail
== last_avail
&& !timeout
)
1258 return result
> 0 ? result
: -EIO
;
1259 spin_lock_irq(&runtime
->lock
);
1261 spin_unlock_irq(&runtime
->lock
);
1266 static unsigned int snd_rawmidi_poll(struct file
*file
, poll_table
* wait
)
1268 struct snd_rawmidi_file
*rfile
;
1269 struct snd_rawmidi_runtime
*runtime
;
1272 rfile
= file
->private_data
;
1273 if (rfile
->input
!= NULL
) {
1274 runtime
= rfile
->input
->runtime
;
1275 snd_rawmidi_input_trigger(rfile
->input
, 1);
1276 poll_wait(file
, &runtime
->sleep
, wait
);
1278 if (rfile
->output
!= NULL
) {
1279 runtime
= rfile
->output
->runtime
;
1280 poll_wait(file
, &runtime
->sleep
, wait
);
1283 if (rfile
->input
!= NULL
) {
1284 if (snd_rawmidi_ready(rfile
->input
))
1285 mask
|= POLLIN
| POLLRDNORM
;
1287 if (rfile
->output
!= NULL
) {
1288 if (snd_rawmidi_ready(rfile
->output
))
1289 mask
|= POLLOUT
| POLLWRNORM
;
1296 #ifdef CONFIG_COMPAT
1297 #include "rawmidi_compat.c"
1299 #define snd_rawmidi_ioctl_compat NULL
1306 static void snd_rawmidi_proc_info_read(struct snd_info_entry
*entry
,
1307 struct snd_info_buffer
*buffer
)
1309 struct snd_rawmidi
*rmidi
;
1310 struct snd_rawmidi_substream
*substream
;
1311 struct snd_rawmidi_runtime
*runtime
;
1312 struct list_head
*list
;
1314 rmidi
= entry
->private_data
;
1315 snd_iprintf(buffer
, "%s\n\n", rmidi
->name
);
1316 down(&rmidi
->open_mutex
);
1317 if (rmidi
->info_flags
& SNDRV_RAWMIDI_INFO_OUTPUT
) {
1318 list_for_each(list
, &rmidi
->streams
[SNDRV_RAWMIDI_STREAM_OUTPUT
].substreams
) {
1319 substream
= list_entry(list
, struct snd_rawmidi_substream
, list
);
1322 " Tx bytes : %lu\n",
1324 (unsigned long) substream
->bytes
);
1325 if (substream
->opened
) {
1326 runtime
= substream
->runtime
;
1329 " Buffer size : %lu\n"
1331 runtime
->oss
? "OSS compatible" : "native",
1332 (unsigned long) runtime
->buffer_size
,
1333 (unsigned long) runtime
->avail
);
1337 if (rmidi
->info_flags
& SNDRV_RAWMIDI_INFO_INPUT
) {
1338 list_for_each(list
, &rmidi
->streams
[SNDRV_RAWMIDI_STREAM_INPUT
].substreams
) {
1339 substream
= list_entry(list
, struct snd_rawmidi_substream
, list
);
1342 " Rx bytes : %lu\n",
1344 (unsigned long) substream
->bytes
);
1345 if (substream
->opened
) {
1346 runtime
= substream
->runtime
;
1348 " Buffer size : %lu\n"
1350 " Overruns : %lu\n",
1351 (unsigned long) runtime
->buffer_size
,
1352 (unsigned long) runtime
->avail
,
1353 (unsigned long) runtime
->xruns
);
1357 up(&rmidi
->open_mutex
);
1361 * Register functions
1364 static struct file_operations snd_rawmidi_f_ops
=
1366 .owner
= THIS_MODULE
,
1367 .read
= snd_rawmidi_read
,
1368 .write
= snd_rawmidi_write
,
1369 .open
= snd_rawmidi_open
,
1370 .release
= snd_rawmidi_release
,
1371 .poll
= snd_rawmidi_poll
,
1372 .unlocked_ioctl
= snd_rawmidi_ioctl
,
1373 .compat_ioctl
= snd_rawmidi_ioctl_compat
,
1376 static int snd_rawmidi_alloc_substreams(struct snd_rawmidi
*rmidi
,
1377 struct snd_rawmidi_str
*stream
,
1381 struct snd_rawmidi_substream
*substream
;
1384 INIT_LIST_HEAD(&stream
->substreams
);
1385 for (idx
= 0; idx
< count
; idx
++) {
1386 substream
= kzalloc(sizeof(*substream
), GFP_KERNEL
);
1387 if (substream
== NULL
) {
1388 snd_printk(KERN_ERR
"rawmidi: cannot allocate substream\n");
1391 substream
->stream
= direction
;
1392 substream
->number
= idx
;
1393 substream
->rmidi
= rmidi
;
1394 substream
->pstr
= stream
;
1395 list_add_tail(&substream
->list
, &stream
->substreams
);
1396 stream
->substream_count
++;
1402 * snd_rawmidi_new - create a rawmidi instance
1403 * @card: the card instance
1404 * @id: the id string
1405 * @device: the device index
1406 * @output_count: the number of output streams
1407 * @input_count: the number of input streams
1408 * @rrawmidi: the pointer to store the new rawmidi instance
1410 * Creates a new rawmidi instance.
1411 * Use snd_rawmidi_set_ops() to set the operators to the new instance.
1413 * Returns zero if successful, or a negative error code on failure.
1415 int snd_rawmidi_new(struct snd_card
*card
, char *id
, int device
,
1416 int output_count
, int input_count
,
1417 struct snd_rawmidi
** rrawmidi
)
1419 struct snd_rawmidi
*rmidi
;
1421 static struct snd_device_ops ops
= {
1422 .dev_free
= snd_rawmidi_dev_free
,
1423 .dev_register
= snd_rawmidi_dev_register
,
1424 .dev_disconnect
= snd_rawmidi_dev_disconnect
,
1425 .dev_unregister
= snd_rawmidi_dev_unregister
1428 snd_assert(rrawmidi
!= NULL
, return -EINVAL
);
1430 snd_assert(card
!= NULL
, return -ENXIO
);
1431 rmidi
= kzalloc(sizeof(*rmidi
), GFP_KERNEL
);
1432 if (rmidi
== NULL
) {
1433 snd_printk(KERN_ERR
"rawmidi: cannot allocate\n");
1437 rmidi
->device
= device
;
1438 init_MUTEX(&rmidi
->open_mutex
);
1439 init_waitqueue_head(&rmidi
->open_wait
);
1441 strlcpy(rmidi
->id
, id
, sizeof(rmidi
->id
));
1442 if ((err
= snd_rawmidi_alloc_substreams(rmidi
,
1443 &rmidi
->streams
[SNDRV_RAWMIDI_STREAM_INPUT
],
1444 SNDRV_RAWMIDI_STREAM_INPUT
,
1445 input_count
)) < 0) {
1446 snd_rawmidi_free(rmidi
);
1449 if ((err
= snd_rawmidi_alloc_substreams(rmidi
,
1450 &rmidi
->streams
[SNDRV_RAWMIDI_STREAM_OUTPUT
],
1451 SNDRV_RAWMIDI_STREAM_OUTPUT
,
1452 output_count
)) < 0) {
1453 snd_rawmidi_free(rmidi
);
1456 if ((err
= snd_device_new(card
, SNDRV_DEV_RAWMIDI
, rmidi
, &ops
)) < 0) {
1457 snd_rawmidi_free(rmidi
);
1464 static void snd_rawmidi_free_substreams(struct snd_rawmidi_str
*stream
)
1466 struct snd_rawmidi_substream
*substream
;
1468 while (!list_empty(&stream
->substreams
)) {
1469 substream
= list_entry(stream
->substreams
.next
, struct snd_rawmidi_substream
, list
);
1470 list_del(&substream
->list
);
1475 static int snd_rawmidi_free(struct snd_rawmidi
*rmidi
)
1477 snd_assert(rmidi
!= NULL
, return -ENXIO
);
1478 snd_rawmidi_free_substreams(&rmidi
->streams
[SNDRV_RAWMIDI_STREAM_INPUT
]);
1479 snd_rawmidi_free_substreams(&rmidi
->streams
[SNDRV_RAWMIDI_STREAM_OUTPUT
]);
1480 if (rmidi
->private_free
)
1481 rmidi
->private_free(rmidi
);
1486 static int snd_rawmidi_dev_free(struct snd_device
*device
)
1488 struct snd_rawmidi
*rmidi
= device
->device_data
;
1489 return snd_rawmidi_free(rmidi
);
1492 #if defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE))
1493 static void snd_rawmidi_dev_seq_free(struct snd_seq_device
*device
)
1495 struct snd_rawmidi
*rmidi
= device
->private_data
;
1496 rmidi
->seq_dev
= NULL
;
1500 static int snd_rawmidi_dev_register(struct snd_device
*device
)
1503 struct snd_info_entry
*entry
;
1505 struct snd_rawmidi
*rmidi
= device
->device_data
;
1507 if (rmidi
->device
>= SNDRV_RAWMIDI_DEVICES
)
1509 down(®ister_mutex
);
1510 if (snd_rawmidi_search(rmidi
->card
, rmidi
->device
)) {
1511 up(®ister_mutex
);
1514 list_add_tail(&rmidi
->list
, &snd_rawmidi_devices
);
1515 sprintf(name
, "midiC%iD%i", rmidi
->card
->number
, rmidi
->device
);
1516 if ((err
= snd_register_device(SNDRV_DEVICE_TYPE_RAWMIDI
,
1517 rmidi
->card
, rmidi
->device
,
1518 &snd_rawmidi_f_ops
, rmidi
, name
)) < 0) {
1519 snd_printk(KERN_ERR
"unable to register rawmidi device %i:%i\n", rmidi
->card
->number
, rmidi
->device
);
1520 list_del(&rmidi
->list
);
1521 up(®ister_mutex
);
1524 if (rmidi
->ops
&& rmidi
->ops
->dev_register
&&
1525 (err
= rmidi
->ops
->dev_register(rmidi
)) < 0) {
1526 snd_unregister_device(SNDRV_DEVICE_TYPE_RAWMIDI
, rmidi
->card
, rmidi
->device
);
1527 list_del(&rmidi
->list
);
1528 up(®ister_mutex
);
1531 #ifdef CONFIG_SND_OSSEMUL
1533 if ((int)rmidi
->device
== midi_map
[rmidi
->card
->number
]) {
1534 if (snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI
,
1535 rmidi
->card
, 0, &snd_rawmidi_f_ops
,
1537 snd_printk(KERN_ERR
"unable to register OSS rawmidi device %i:%i\n", rmidi
->card
->number
, 0);
1540 #ifdef SNDRV_OSS_INFO_DEV_MIDI
1541 snd_oss_info_register(SNDRV_OSS_INFO_DEV_MIDI
, rmidi
->card
->number
, rmidi
->name
);
1545 if ((int)rmidi
->device
== amidi_map
[rmidi
->card
->number
]) {
1546 if (snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI
,
1547 rmidi
->card
, 1, &snd_rawmidi_f_ops
,
1549 snd_printk(KERN_ERR
"unable to register OSS rawmidi device %i:%i\n", rmidi
->card
->number
, 1);
1554 #endif /* CONFIG_SND_OSSEMUL */
1555 up(®ister_mutex
);
1556 sprintf(name
, "midi%d", rmidi
->device
);
1557 entry
= snd_info_create_card_entry(rmidi
->card
, name
, rmidi
->card
->proc_root
);
1559 entry
->private_data
= rmidi
;
1560 entry
->c
.text
.read_size
= 1024;
1561 entry
->c
.text
.read
= snd_rawmidi_proc_info_read
;
1562 if (snd_info_register(entry
) < 0) {
1563 snd_info_free_entry(entry
);
1567 rmidi
->proc_entry
= entry
;
1568 #if defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE))
1569 if (!rmidi
->ops
|| !rmidi
->ops
->dev_register
) { /* own registration mechanism */
1570 if (snd_seq_device_new(rmidi
->card
, rmidi
->device
, SNDRV_SEQ_DEV_ID_MIDISYNTH
, 0, &rmidi
->seq_dev
) >= 0) {
1571 rmidi
->seq_dev
->private_data
= rmidi
;
1572 rmidi
->seq_dev
->private_free
= snd_rawmidi_dev_seq_free
;
1573 sprintf(rmidi
->seq_dev
->name
, "MIDI %d-%d", rmidi
->card
->number
, rmidi
->device
);
1574 snd_device_register(rmidi
->card
, rmidi
->seq_dev
);
1581 static int snd_rawmidi_dev_disconnect(struct snd_device
*device
)
1583 struct snd_rawmidi
*rmidi
= device
->device_data
;
1585 down(®ister_mutex
);
1586 list_del_init(&rmidi
->list
);
1587 up(®ister_mutex
);
1591 static int snd_rawmidi_dev_unregister(struct snd_device
*device
)
1593 struct snd_rawmidi
*rmidi
= device
->device_data
;
1595 snd_assert(rmidi
!= NULL
, return -ENXIO
);
1596 down(®ister_mutex
);
1597 list_del(&rmidi
->list
);
1598 if (rmidi
->proc_entry
) {
1599 snd_info_unregister(rmidi
->proc_entry
);
1600 rmidi
->proc_entry
= NULL
;
1602 #ifdef CONFIG_SND_OSSEMUL
1603 if (rmidi
->ossreg
) {
1604 if ((int)rmidi
->device
== midi_map
[rmidi
->card
->number
]) {
1605 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI
, rmidi
->card
, 0);
1606 #ifdef SNDRV_OSS_INFO_DEV_MIDI
1607 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_MIDI
, rmidi
->card
->number
);
1610 if ((int)rmidi
->device
== amidi_map
[rmidi
->card
->number
])
1611 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI
, rmidi
->card
, 1);
1614 #endif /* CONFIG_SND_OSSEMUL */
1615 if (rmidi
->ops
&& rmidi
->ops
->dev_unregister
)
1616 rmidi
->ops
->dev_unregister(rmidi
);
1617 snd_unregister_device(SNDRV_DEVICE_TYPE_RAWMIDI
, rmidi
->card
, rmidi
->device
);
1618 up(®ister_mutex
);
1619 #if defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE))
1620 if (rmidi
->seq_dev
) {
1621 snd_device_free(rmidi
->card
, rmidi
->seq_dev
);
1622 rmidi
->seq_dev
= NULL
;
1625 return snd_rawmidi_free(rmidi
);
1629 * snd_rawmidi_set_ops - set the rawmidi operators
1630 * @rmidi: the rawmidi instance
1631 * @stream: the stream direction, SNDRV_RAWMIDI_STREAM_XXX
1632 * @ops: the operator table
1634 * Sets the rawmidi operators for the given stream direction.
1636 void snd_rawmidi_set_ops(struct snd_rawmidi
*rmidi
, int stream
,
1637 struct snd_rawmidi_ops
*ops
)
1639 struct list_head
*list
;
1640 struct snd_rawmidi_substream
*substream
;
1642 list_for_each(list
, &rmidi
->streams
[stream
].substreams
) {
1643 substream
= list_entry(list
, struct snd_rawmidi_substream
, list
);
1644 substream
->ops
= ops
;
1652 static int __init
alsa_rawmidi_init(void)
1655 snd_ctl_register_ioctl(snd_rawmidi_control_ioctl
);
1656 snd_ctl_register_ioctl_compat(snd_rawmidi_control_ioctl
);
1657 #ifdef CONFIG_SND_OSSEMUL
1659 /* check device map table */
1660 for (i
= 0; i
< SNDRV_CARDS
; i
++) {
1661 if (midi_map
[i
] < 0 || midi_map
[i
] >= SNDRV_RAWMIDI_DEVICES
) {
1662 snd_printk(KERN_ERR
"invalid midi_map[%d] = %d\n", i
, midi_map
[i
]);
1665 if (amidi_map
[i
] < 0 || amidi_map
[i
] >= SNDRV_RAWMIDI_DEVICES
) {
1666 snd_printk(KERN_ERR
"invalid amidi_map[%d] = %d\n", i
, amidi_map
[i
]);
1671 #endif /* CONFIG_SND_OSSEMUL */
1675 static void __exit
alsa_rawmidi_exit(void)
1677 snd_ctl_unregister_ioctl(snd_rawmidi_control_ioctl
);
1678 snd_ctl_unregister_ioctl_compat(snd_rawmidi_control_ioctl
);
1681 module_init(alsa_rawmidi_init
)
1682 module_exit(alsa_rawmidi_exit
)
1684 EXPORT_SYMBOL(snd_rawmidi_output_params
);
1685 EXPORT_SYMBOL(snd_rawmidi_input_params
);
1686 EXPORT_SYMBOL(snd_rawmidi_drop_output
);
1687 EXPORT_SYMBOL(snd_rawmidi_drain_output
);
1688 EXPORT_SYMBOL(snd_rawmidi_drain_input
);
1689 EXPORT_SYMBOL(snd_rawmidi_receive
);
1690 EXPORT_SYMBOL(snd_rawmidi_transmit_empty
);
1691 EXPORT_SYMBOL(snd_rawmidi_transmit_peek
);
1692 EXPORT_SYMBOL(snd_rawmidi_transmit_ack
);
1693 EXPORT_SYMBOL(snd_rawmidi_transmit
);
1694 EXPORT_SYMBOL(snd_rawmidi_new
);
1695 EXPORT_SYMBOL(snd_rawmidi_set_ops
);
1696 EXPORT_SYMBOL(snd_rawmidi_info
);
1697 EXPORT_SYMBOL(snd_rawmidi_info_select
);
1698 EXPORT_SYMBOL(snd_rawmidi_kernel_open
);
1699 EXPORT_SYMBOL(snd_rawmidi_kernel_release
);
1700 EXPORT_SYMBOL(snd_rawmidi_kernel_read
);
1701 EXPORT_SYMBOL(snd_rawmidi_kernel_write
);