2 * usbmidi.c - ALSA USB MIDI driver
4 * Copyright (c) 2002-2005 Clemens Ladisch
7 * Based on the OSS usb-midi driver by NAGANO Daisuke,
8 * NetBSD's umidi driver by Takuya SHIOZAKI,
9 * the "USB Device Class Definition for MIDI Devices" by Roland
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
20 * Alternatively, this software may be distributed and/or modified under the
21 * terms of the GNU General Public License as published by the Free Software
22 * Foundation; either version 2 of the License, or (at your option) any later
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
29 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 #include <sound/driver.h>
39 #include <linux/kernel.h>
40 #include <linux/types.h>
41 #include <linux/bitops.h>
42 #include <linux/interrupt.h>
43 #include <linux/spinlock.h>
44 #include <linux/string.h>
45 #include <linux/init.h>
46 #include <linux/slab.h>
47 #include <linux/timer.h>
48 #include <linux/usb.h>
49 #include <sound/core.h>
50 #include <sound/rawmidi.h>
51 #include <sound/asequencer.h>
56 * define this to log all USB packets
58 /* #define DUMP_PACKETS */
61 * how long to wait after some USB errors, so that khubd can disconnect() us
62 * without too many spurious errors
64 #define ERROR_DELAY_JIFFIES (HZ / 10)
67 MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
68 MODULE_DESCRIPTION("USB Audio/MIDI helper module");
69 MODULE_LICENSE("Dual BSD/GPL");
72 struct usb_ms_header_descriptor
{
75 __u8 bDescriptorSubtype
;
78 } __attribute__ ((packed
));
80 struct usb_ms_endpoint_descriptor
{
83 __u8 bDescriptorSubtype
;
85 __u8 baAssocJackID
[0];
86 } __attribute__ ((packed
));
88 struct snd_usb_midi_in_endpoint
;
89 struct snd_usb_midi_out_endpoint
;
90 struct snd_usb_midi_endpoint
;
92 struct usb_protocol_ops
{
93 void (*input
)(struct snd_usb_midi_in_endpoint
*, uint8_t*, int);
94 void (*output
)(struct snd_usb_midi_out_endpoint
*);
95 void (*output_packet
)(struct urb
*, uint8_t, uint8_t, uint8_t, uint8_t);
96 void (*init_out_endpoint
)(struct snd_usb_midi_out_endpoint
*);
97 void (*finish_out_endpoint
)(struct snd_usb_midi_out_endpoint
*);
100 struct snd_usb_midi
{
101 struct snd_usb_audio
*chip
;
102 struct usb_interface
*iface
;
103 const struct snd_usb_audio_quirk
*quirk
;
104 struct snd_rawmidi
*rmidi
;
105 struct usb_protocol_ops
* usb_protocol_ops
;
106 struct list_head list
;
107 struct timer_list error_timer
;
109 struct snd_usb_midi_endpoint
{
110 struct snd_usb_midi_out_endpoint
*out
;
111 struct snd_usb_midi_in_endpoint
*in
;
112 } endpoints
[MIDI_MAX_ENDPOINTS
];
113 unsigned long input_triggered
;
116 struct snd_usb_midi_out_endpoint
{
117 struct snd_usb_midi
* umidi
;
120 int max_transfer
; /* size of urb buffer */
121 struct tasklet_struct tasklet
;
123 spinlock_t buffer_lock
;
125 struct usbmidi_out_port
{
126 struct snd_usb_midi_out_endpoint
* ep
;
127 struct snd_rawmidi_substream
*substream
;
129 uint8_t cable
; /* cable number << 4 */
131 #define STATE_UNKNOWN 0
132 #define STATE_1PARAM 1
133 #define STATE_2PARAM_1 2
134 #define STATE_2PARAM_2 3
135 #define STATE_SYSEX_0 4
136 #define STATE_SYSEX_1 5
137 #define STATE_SYSEX_2 6
143 struct snd_usb_midi_in_endpoint
{
144 struct snd_usb_midi
* umidi
;
146 struct usbmidi_in_port
{
147 struct snd_rawmidi_substream
*substream
;
154 static void snd_usbmidi_do_output(struct snd_usb_midi_out_endpoint
* ep
);
156 static const uint8_t snd_usbmidi_cin_length
[] = {
157 0, 0, 2, 3, 3, 1, 2, 3, 3, 3, 3, 3, 2, 2, 3, 1
161 * Submits the URB, with error handling.
163 static int snd_usbmidi_submit_urb(struct urb
* urb
, gfp_t flags
)
165 int err
= usb_submit_urb(urb
, flags
);
166 if (err
< 0 && err
!= -ENODEV
)
167 snd_printk(KERN_ERR
"usb_submit_urb: %d\n", err
);
172 * Error handling for URB completion functions.
174 static int snd_usbmidi_urb_error(int status
)
177 /* manually unlinked, or device gone */
183 /* errors that might occur during unplugging */
189 snd_printk(KERN_ERR
"urb status %d\n", status
);
190 return 0; /* continue */
195 * Receives a chunk of MIDI data.
197 static void snd_usbmidi_input_data(struct snd_usb_midi_in_endpoint
* ep
, int portidx
,
198 uint8_t* data
, int length
)
200 struct usbmidi_in_port
* port
= &ep
->ports
[portidx
];
202 if (!port
->substream
) {
203 snd_printd("unexpected port %d!\n", portidx
);
206 if (!test_bit(port
->substream
->number
, &ep
->umidi
->input_triggered
))
208 snd_rawmidi_receive(port
->substream
, data
, length
);
212 static void dump_urb(const char *type
, const u8
*data
, int length
)
214 snd_printk(KERN_DEBUG
"%s packet: [", type
);
215 for (; length
> 0; ++data
, --length
)
216 printk(" %02x", *data
);
220 #define dump_urb(type, data, length) /* nothing */
224 * Processes the data read from the device.
226 static void snd_usbmidi_in_urb_complete(struct urb
* urb
)
228 struct snd_usb_midi_in_endpoint
* ep
= urb
->context
;
230 if (urb
->status
== 0) {
231 dump_urb("received", urb
->transfer_buffer
, urb
->actual_length
);
232 ep
->umidi
->usb_protocol_ops
->input(ep
, urb
->transfer_buffer
,
235 int err
= snd_usbmidi_urb_error(urb
->status
);
237 if (err
!= -ENODEV
) {
238 ep
->error_resubmit
= 1;
239 mod_timer(&ep
->umidi
->error_timer
,
240 jiffies
+ ERROR_DELAY_JIFFIES
);
246 urb
->dev
= ep
->umidi
->chip
->dev
;
247 snd_usbmidi_submit_urb(urb
, GFP_ATOMIC
);
250 static void snd_usbmidi_out_urb_complete(struct urb
* urb
)
252 struct snd_usb_midi_out_endpoint
* ep
= urb
->context
;
254 spin_lock(&ep
->buffer_lock
);
256 spin_unlock(&ep
->buffer_lock
);
257 if (urb
->status
< 0) {
258 int err
= snd_usbmidi_urb_error(urb
->status
);
261 mod_timer(&ep
->umidi
->error_timer
,
262 jiffies
+ ERROR_DELAY_JIFFIES
);
266 snd_usbmidi_do_output(ep
);
270 * This is called when some data should be transferred to the device
271 * (from one or more substreams).
273 static void snd_usbmidi_do_output(struct snd_usb_midi_out_endpoint
* ep
)
275 struct urb
* urb
= ep
->urb
;
278 spin_lock_irqsave(&ep
->buffer_lock
, flags
);
279 if (ep
->urb_active
|| ep
->umidi
->chip
->shutdown
) {
280 spin_unlock_irqrestore(&ep
->buffer_lock
, flags
);
284 urb
->transfer_buffer_length
= 0;
285 ep
->umidi
->usb_protocol_ops
->output(ep
);
287 if (urb
->transfer_buffer_length
> 0) {
288 dump_urb("sending", urb
->transfer_buffer
,
289 urb
->transfer_buffer_length
);
290 urb
->dev
= ep
->umidi
->chip
->dev
;
291 ep
->urb_active
= snd_usbmidi_submit_urb(urb
, GFP_ATOMIC
) >= 0;
293 spin_unlock_irqrestore(&ep
->buffer_lock
, flags
);
296 static void snd_usbmidi_out_tasklet(unsigned long data
)
298 struct snd_usb_midi_out_endpoint
* ep
= (struct snd_usb_midi_out_endpoint
*) data
;
300 snd_usbmidi_do_output(ep
);
303 /* called after transfers had been interrupted due to some USB error */
304 static void snd_usbmidi_error_timer(unsigned long data
)
306 struct snd_usb_midi
*umidi
= (struct snd_usb_midi
*)data
;
309 for (i
= 0; i
< MIDI_MAX_ENDPOINTS
; ++i
) {
310 struct snd_usb_midi_in_endpoint
*in
= umidi
->endpoints
[i
].in
;
311 if (in
&& in
->error_resubmit
) {
312 in
->error_resubmit
= 0;
313 in
->urb
->dev
= umidi
->chip
->dev
;
314 snd_usbmidi_submit_urb(in
->urb
, GFP_ATOMIC
);
316 if (umidi
->endpoints
[i
].out
)
317 snd_usbmidi_do_output(umidi
->endpoints
[i
].out
);
321 /* helper function to send static data that may not DMA-able */
322 static int send_bulk_static_data(struct snd_usb_midi_out_endpoint
* ep
,
323 const void *data
, int len
)
326 void *buf
= kmemdup(data
, len
, GFP_KERNEL
);
329 dump_urb("sending", buf
, len
);
330 err
= usb_bulk_msg(ep
->umidi
->chip
->dev
, ep
->urb
->pipe
, buf
, len
,
337 * Standard USB MIDI protocol: see the spec.
338 * Midiman protocol: like the standard protocol, but the control byte is the
339 * fourth byte in each packet, and uses length instead of CIN.
342 static void snd_usbmidi_standard_input(struct snd_usb_midi_in_endpoint
* ep
,
343 uint8_t* buffer
, int buffer_length
)
347 for (i
= 0; i
+ 3 < buffer_length
; i
+= 4)
348 if (buffer
[i
] != 0) {
349 int cable
= buffer
[i
] >> 4;
350 int length
= snd_usbmidi_cin_length
[buffer
[i
] & 0x0f];
351 snd_usbmidi_input_data(ep
, cable
, &buffer
[i
+ 1], length
);
355 static void snd_usbmidi_midiman_input(struct snd_usb_midi_in_endpoint
* ep
,
356 uint8_t* buffer
, int buffer_length
)
360 for (i
= 0; i
+ 3 < buffer_length
; i
+= 4)
361 if (buffer
[i
+ 3] != 0) {
362 int port
= buffer
[i
+ 3] >> 4;
363 int length
= buffer
[i
+ 3] & 3;
364 snd_usbmidi_input_data(ep
, port
, &buffer
[i
], length
);
369 * Adds one USB MIDI packet to the output buffer.
371 static void snd_usbmidi_output_standard_packet(struct urb
* urb
, uint8_t p0
,
372 uint8_t p1
, uint8_t p2
, uint8_t p3
)
375 uint8_t* buf
= (uint8_t*)urb
->transfer_buffer
+ urb
->transfer_buffer_length
;
380 urb
->transfer_buffer_length
+= 4;
384 * Adds one Midiman packet to the output buffer.
386 static void snd_usbmidi_output_midiman_packet(struct urb
* urb
, uint8_t p0
,
387 uint8_t p1
, uint8_t p2
, uint8_t p3
)
390 uint8_t* buf
= (uint8_t*)urb
->transfer_buffer
+ urb
->transfer_buffer_length
;
394 buf
[3] = (p0
& 0xf0) | snd_usbmidi_cin_length
[p0
& 0x0f];
395 urb
->transfer_buffer_length
+= 4;
399 * Converts MIDI commands to USB MIDI packets.
401 static void snd_usbmidi_transmit_byte(struct usbmidi_out_port
* port
,
402 uint8_t b
, struct urb
* urb
)
404 uint8_t p0
= port
->cable
;
405 void (*output_packet
)(struct urb
*, uint8_t, uint8_t, uint8_t, uint8_t) =
406 port
->ep
->umidi
->usb_protocol_ops
->output_packet
;
409 output_packet(urb
, p0
| 0x0f, b
, 0, 0);
410 } else if (b
>= 0xf0) {
414 port
->state
= STATE_SYSEX_1
;
419 port
->state
= STATE_1PARAM
;
423 port
->state
= STATE_2PARAM_1
;
427 port
->state
= STATE_UNKNOWN
;
430 output_packet(urb
, p0
| 0x05, 0xf6, 0, 0);
431 port
->state
= STATE_UNKNOWN
;
434 switch (port
->state
) {
436 output_packet(urb
, p0
| 0x05, 0xf7, 0, 0);
439 output_packet(urb
, p0
| 0x06, port
->data
[0], 0xf7, 0);
442 output_packet(urb
, p0
| 0x07, port
->data
[0], port
->data
[1], 0xf7);
445 port
->state
= STATE_UNKNOWN
;
448 } else if (b
>= 0x80) {
450 if (b
>= 0xc0 && b
<= 0xdf)
451 port
->state
= STATE_1PARAM
;
453 port
->state
= STATE_2PARAM_1
;
454 } else { /* b < 0x80 */
455 switch (port
->state
) {
457 if (port
->data
[0] < 0xf0) {
458 p0
|= port
->data
[0] >> 4;
461 port
->state
= STATE_UNKNOWN
;
463 output_packet(urb
, p0
, port
->data
[0], b
, 0);
467 port
->state
= STATE_2PARAM_2
;
470 if (port
->data
[0] < 0xf0) {
471 p0
|= port
->data
[0] >> 4;
472 port
->state
= STATE_2PARAM_1
;
475 port
->state
= STATE_UNKNOWN
;
477 output_packet(urb
, p0
, port
->data
[0], port
->data
[1], b
);
481 port
->state
= STATE_SYSEX_1
;
485 port
->state
= STATE_SYSEX_2
;
488 output_packet(urb
, p0
| 0x04, port
->data
[0], port
->data
[1], b
);
489 port
->state
= STATE_SYSEX_0
;
495 static void snd_usbmidi_standard_output(struct snd_usb_midi_out_endpoint
* ep
)
497 struct urb
* urb
= ep
->urb
;
500 /* FIXME: lower-numbered ports can starve higher-numbered ports */
501 for (p
= 0; p
< 0x10; ++p
) {
502 struct usbmidi_out_port
* port
= &ep
->ports
[p
];
505 while (urb
->transfer_buffer_length
+ 3 < ep
->max_transfer
) {
507 if (snd_rawmidi_transmit(port
->substream
, &b
, 1) != 1) {
511 snd_usbmidi_transmit_byte(port
, b
, urb
);
516 static struct usb_protocol_ops snd_usbmidi_standard_ops
= {
517 .input
= snd_usbmidi_standard_input
,
518 .output
= snd_usbmidi_standard_output
,
519 .output_packet
= snd_usbmidi_output_standard_packet
,
522 static struct usb_protocol_ops snd_usbmidi_midiman_ops
= {
523 .input
= snd_usbmidi_midiman_input
,
524 .output
= snd_usbmidi_standard_output
,
525 .output_packet
= snd_usbmidi_output_midiman_packet
,
529 * Novation USB MIDI protocol: number of data bytes is in the first byte
530 * (when receiving) (+1!) or in the second byte (when sending); data begins
534 static void snd_usbmidi_novation_input(struct snd_usb_midi_in_endpoint
* ep
,
535 uint8_t* buffer
, int buffer_length
)
537 if (buffer_length
< 2 || !buffer
[0] || buffer_length
< buffer
[0] + 1)
539 snd_usbmidi_input_data(ep
, 0, &buffer
[2], buffer
[0] - 1);
542 static void snd_usbmidi_novation_output(struct snd_usb_midi_out_endpoint
* ep
)
544 uint8_t* transfer_buffer
;
547 if (!ep
->ports
[0].active
)
549 transfer_buffer
= ep
->urb
->transfer_buffer
;
550 count
= snd_rawmidi_transmit(ep
->ports
[0].substream
,
552 ep
->max_transfer
- 2);
554 ep
->ports
[0].active
= 0;
557 transfer_buffer
[0] = 0;
558 transfer_buffer
[1] = count
;
559 ep
->urb
->transfer_buffer_length
= 2 + count
;
562 static struct usb_protocol_ops snd_usbmidi_novation_ops
= {
563 .input
= snd_usbmidi_novation_input
,
564 .output
= snd_usbmidi_novation_output
,
568 * "raw" protocol: used by the MOTU FastLane.
571 static void snd_usbmidi_raw_input(struct snd_usb_midi_in_endpoint
* ep
,
572 uint8_t* buffer
, int buffer_length
)
574 snd_usbmidi_input_data(ep
, 0, buffer
, buffer_length
);
577 static void snd_usbmidi_raw_output(struct snd_usb_midi_out_endpoint
* ep
)
581 if (!ep
->ports
[0].active
)
583 count
= snd_rawmidi_transmit(ep
->ports
[0].substream
,
584 ep
->urb
->transfer_buffer
,
587 ep
->ports
[0].active
= 0;
590 ep
->urb
->transfer_buffer_length
= count
;
593 static struct usb_protocol_ops snd_usbmidi_raw_ops
= {
594 .input
= snd_usbmidi_raw_input
,
595 .output
= snd_usbmidi_raw_output
,
599 * Emagic USB MIDI protocol: raw MIDI with "F5 xx" port switching.
602 static void snd_usbmidi_emagic_init_out(struct snd_usb_midi_out_endpoint
* ep
)
604 static const u8 init_data
[] = {
605 /* initialization magic: "get version" */
607 0x00, 0x20, 0x31, /* Emagic */
609 0x0b, /* version number request */
610 0x00, /* command version */
611 0x00, /* EEPROM, box 0 */
614 send_bulk_static_data(ep
, init_data
, sizeof(init_data
));
615 /* while we're at it, pour on more magic */
616 send_bulk_static_data(ep
, init_data
, sizeof(init_data
));
619 static void snd_usbmidi_emagic_finish_out(struct snd_usb_midi_out_endpoint
* ep
)
621 static const u8 finish_data
[] = {
622 /* switch to patch mode with last preset */
624 0x00, 0x20, 0x31, /* Emagic */
626 0x10, /* patch switch command */
627 0x00, /* command version */
628 0x7f, /* to all boxes */
629 0x40, /* last preset in EEPROM */
632 send_bulk_static_data(ep
, finish_data
, sizeof(finish_data
));
635 static void snd_usbmidi_emagic_input(struct snd_usb_midi_in_endpoint
* ep
,
636 uint8_t* buffer
, int buffer_length
)
640 /* FF indicates end of valid data */
641 for (i
= 0; i
< buffer_length
; ++i
)
642 if (buffer
[i
] == 0xff) {
647 /* handle F5 at end of last buffer */
651 while (buffer_length
> 0) {
652 /* determine size of data until next F5 */
653 for (i
= 0; i
< buffer_length
; ++i
)
654 if (buffer
[i
] == 0xf5)
656 snd_usbmidi_input_data(ep
, ep
->current_port
, buffer
, i
);
660 if (buffer_length
<= 0)
662 /* assert(buffer[0] == 0xf5); */
668 if (buffer_length
<= 0)
670 if (buffer
[0] < 0x80) {
671 ep
->current_port
= (buffer
[0] - 1) & 15;
679 static void snd_usbmidi_emagic_output(struct snd_usb_midi_out_endpoint
* ep
)
681 int port0
= ep
->current_port
;
682 uint8_t* buf
= ep
->urb
->transfer_buffer
;
683 int buf_free
= ep
->max_transfer
;
686 for (i
= 0; i
< 0x10; ++i
) {
687 /* round-robin, starting at the last current port */
688 int portnum
= (port0
+ i
) & 15;
689 struct usbmidi_out_port
* port
= &ep
->ports
[portnum
];
693 if (snd_rawmidi_transmit_peek(port
->substream
, buf
, 1) != 1) {
698 if (portnum
!= ep
->current_port
) {
701 ep
->current_port
= portnum
;
703 buf
[1] = (portnum
+ 1) & 15;
710 length
= snd_rawmidi_transmit(port
->substream
, buf
, buf_free
);
718 if (buf_free
< ep
->max_transfer
&& buf_free
> 0) {
722 ep
->urb
->transfer_buffer_length
= ep
->max_transfer
- buf_free
;
725 static struct usb_protocol_ops snd_usbmidi_emagic_ops
= {
726 .input
= snd_usbmidi_emagic_input
,
727 .output
= snd_usbmidi_emagic_output
,
728 .init_out_endpoint
= snd_usbmidi_emagic_init_out
,
729 .finish_out_endpoint
= snd_usbmidi_emagic_finish_out
,
733 static int snd_usbmidi_output_open(struct snd_rawmidi_substream
*substream
)
735 struct snd_usb_midi
* umidi
= substream
->rmidi
->private_data
;
736 struct usbmidi_out_port
* port
= NULL
;
739 for (i
= 0; i
< MIDI_MAX_ENDPOINTS
; ++i
)
740 if (umidi
->endpoints
[i
].out
)
741 for (j
= 0; j
< 0x10; ++j
)
742 if (umidi
->endpoints
[i
].out
->ports
[j
].substream
== substream
) {
743 port
= &umidi
->endpoints
[i
].out
->ports
[j
];
750 substream
->runtime
->private_data
= port
;
751 port
->state
= STATE_UNKNOWN
;
755 static int snd_usbmidi_output_close(struct snd_rawmidi_substream
*substream
)
760 static void snd_usbmidi_output_trigger(struct snd_rawmidi_substream
*substream
, int up
)
762 struct usbmidi_out_port
* port
= (struct usbmidi_out_port
*)substream
->runtime
->private_data
;
766 if (port
->ep
->umidi
->chip
->shutdown
) {
767 /* gobble up remaining bytes to prevent wait in
768 * snd_rawmidi_drain_output */
769 while (!snd_rawmidi_transmit_empty(substream
))
770 snd_rawmidi_transmit_ack(substream
, 1);
773 tasklet_hi_schedule(&port
->ep
->tasklet
);
777 static int snd_usbmidi_input_open(struct snd_rawmidi_substream
*substream
)
782 static int snd_usbmidi_input_close(struct snd_rawmidi_substream
*substream
)
787 static void snd_usbmidi_input_trigger(struct snd_rawmidi_substream
*substream
, int up
)
789 struct snd_usb_midi
* umidi
= substream
->rmidi
->private_data
;
792 set_bit(substream
->number
, &umidi
->input_triggered
);
794 clear_bit(substream
->number
, &umidi
->input_triggered
);
797 static struct snd_rawmidi_ops snd_usbmidi_output_ops
= {
798 .open
= snd_usbmidi_output_open
,
799 .close
= snd_usbmidi_output_close
,
800 .trigger
= snd_usbmidi_output_trigger
,
803 static struct snd_rawmidi_ops snd_usbmidi_input_ops
= {
804 .open
= snd_usbmidi_input_open
,
805 .close
= snd_usbmidi_input_close
,
806 .trigger
= snd_usbmidi_input_trigger
810 * Frees an input endpoint.
811 * May be called when ep hasn't been initialized completely.
813 static void snd_usbmidi_in_endpoint_delete(struct snd_usb_midi_in_endpoint
* ep
)
816 usb_buffer_free(ep
->umidi
->chip
->dev
,
817 ep
->urb
->transfer_buffer_length
,
818 ep
->urb
->transfer_buffer
,
819 ep
->urb
->transfer_dma
);
820 usb_free_urb(ep
->urb
);
826 * Creates an input endpoint.
828 static int snd_usbmidi_in_endpoint_create(struct snd_usb_midi
* umidi
,
829 struct snd_usb_midi_endpoint_info
* ep_info
,
830 struct snd_usb_midi_endpoint
* rep
)
832 struct snd_usb_midi_in_endpoint
* ep
;
838 ep
= kzalloc(sizeof(*ep
), GFP_KERNEL
);
843 ep
->urb
= usb_alloc_urb(0, GFP_KERNEL
);
845 snd_usbmidi_in_endpoint_delete(ep
);
848 if (ep_info
->in_interval
)
849 pipe
= usb_rcvintpipe(umidi
->chip
->dev
, ep_info
->in_ep
);
851 pipe
= usb_rcvbulkpipe(umidi
->chip
->dev
, ep_info
->in_ep
);
852 length
= usb_maxpacket(umidi
->chip
->dev
, pipe
, 0);
853 buffer
= usb_buffer_alloc(umidi
->chip
->dev
, length
, GFP_KERNEL
,
854 &ep
->urb
->transfer_dma
);
856 snd_usbmidi_in_endpoint_delete(ep
);
859 if (ep_info
->in_interval
)
860 usb_fill_int_urb(ep
->urb
, umidi
->chip
->dev
, pipe
, buffer
,
861 length
, snd_usbmidi_in_urb_complete
, ep
,
862 ep_info
->in_interval
);
864 usb_fill_bulk_urb(ep
->urb
, umidi
->chip
->dev
, pipe
, buffer
,
865 length
, snd_usbmidi_in_urb_complete
, ep
);
866 ep
->urb
->transfer_flags
= URB_NO_TRANSFER_DMA_MAP
;
872 static unsigned int snd_usbmidi_count_bits(unsigned int x
)
876 for (bits
= 0; x
; ++bits
)
882 * Frees an output endpoint.
883 * May be called when ep hasn't been initialized completely.
885 static void snd_usbmidi_out_endpoint_delete(struct snd_usb_midi_out_endpoint
* ep
)
888 usb_buffer_free(ep
->umidi
->chip
->dev
, ep
->max_transfer
,
889 ep
->urb
->transfer_buffer
,
890 ep
->urb
->transfer_dma
);
891 usb_free_urb(ep
->urb
);
897 * Creates an output endpoint, and initializes output ports.
899 static int snd_usbmidi_out_endpoint_create(struct snd_usb_midi
* umidi
,
900 struct snd_usb_midi_endpoint_info
* ep_info
,
901 struct snd_usb_midi_endpoint
* rep
)
903 struct snd_usb_midi_out_endpoint
* ep
;
909 ep
= kzalloc(sizeof(*ep
), GFP_KERNEL
);
914 ep
->urb
= usb_alloc_urb(0, GFP_KERNEL
);
916 snd_usbmidi_out_endpoint_delete(ep
);
919 /* we never use interrupt output pipes */
920 pipe
= usb_sndbulkpipe(umidi
->chip
->dev
, ep_info
->out_ep
);
921 ep
->max_transfer
= usb_maxpacket(umidi
->chip
->dev
, pipe
, 1);
922 buffer
= usb_buffer_alloc(umidi
->chip
->dev
, ep
->max_transfer
,
923 GFP_KERNEL
, &ep
->urb
->transfer_dma
);
925 snd_usbmidi_out_endpoint_delete(ep
);
928 usb_fill_bulk_urb(ep
->urb
, umidi
->chip
->dev
, pipe
, buffer
,
929 ep
->max_transfer
, snd_usbmidi_out_urb_complete
, ep
);
930 ep
->urb
->transfer_flags
= URB_NO_TRANSFER_DMA_MAP
;
932 spin_lock_init(&ep
->buffer_lock
);
933 tasklet_init(&ep
->tasklet
, snd_usbmidi_out_tasklet
, (unsigned long)ep
);
935 for (i
= 0; i
< 0x10; ++i
)
936 if (ep_info
->out_cables
& (1 << i
)) {
937 ep
->ports
[i
].ep
= ep
;
938 ep
->ports
[i
].cable
= i
<< 4;
941 if (umidi
->usb_protocol_ops
->init_out_endpoint
)
942 umidi
->usb_protocol_ops
->init_out_endpoint(ep
);
951 static void snd_usbmidi_free(struct snd_usb_midi
* umidi
)
955 for (i
= 0; i
< MIDI_MAX_ENDPOINTS
; ++i
) {
956 struct snd_usb_midi_endpoint
* ep
= &umidi
->endpoints
[i
];
958 snd_usbmidi_out_endpoint_delete(ep
->out
);
960 snd_usbmidi_in_endpoint_delete(ep
->in
);
966 * Unlinks all URBs (must be done before the usb_device is deleted).
968 void snd_usbmidi_disconnect(struct list_head
* p
)
970 struct snd_usb_midi
* umidi
;
973 umidi
= list_entry(p
, struct snd_usb_midi
, list
);
974 del_timer_sync(&umidi
->error_timer
);
975 for (i
= 0; i
< MIDI_MAX_ENDPOINTS
; ++i
) {
976 struct snd_usb_midi_endpoint
* ep
= &umidi
->endpoints
[i
];
978 tasklet_kill(&ep
->out
->tasklet
);
979 if (ep
->out
&& ep
->out
->urb
) {
980 usb_kill_urb(ep
->out
->urb
);
981 if (umidi
->usb_protocol_ops
->finish_out_endpoint
)
982 umidi
->usb_protocol_ops
->finish_out_endpoint(ep
->out
);
984 if (ep
->in
&& ep
->in
->urb
)
985 usb_kill_urb(ep
->in
->urb
);
989 static void snd_usbmidi_rawmidi_free(struct snd_rawmidi
*rmidi
)
991 struct snd_usb_midi
* umidi
= rmidi
->private_data
;
992 snd_usbmidi_free(umidi
);
995 static struct snd_rawmidi_substream
*snd_usbmidi_find_substream(struct snd_usb_midi
* umidi
,
996 int stream
, int number
)
998 struct list_head
* list
;
1000 list_for_each(list
, &umidi
->rmidi
->streams
[stream
].substreams
) {
1001 struct snd_rawmidi_substream
*substream
= list_entry(list
, struct snd_rawmidi_substream
, list
);
1002 if (substream
->number
== number
)
1009 * This list specifies names for ports that do not fit into the standard
1010 * "(product) MIDI (n)" schema because they aren't external MIDI ports,
1011 * such as internal control or synthesizer ports.
1013 static struct port_info
{
1018 unsigned int seq_flags
;
1019 } snd_usbmidi_port_info
[] = {
1020 #define PORT_INFO(vendor, product, num, name_, voices_, flags) \
1021 { .id = USB_ID(vendor, product), \
1022 .port = num, .voices = voices_, \
1023 .name = name_, .seq_flags = flags }
1024 #define EXTERNAL_PORT(vendor, product, num, name) \
1025 PORT_INFO(vendor, product, num, name, 0, \
1026 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC | \
1027 SNDRV_SEQ_PORT_TYPE_HARDWARE | \
1028 SNDRV_SEQ_PORT_TYPE_PORT)
1029 #define CONTROL_PORT(vendor, product, num, name) \
1030 PORT_INFO(vendor, product, num, name, 0, \
1031 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC | \
1032 SNDRV_SEQ_PORT_TYPE_HARDWARE)
1033 #define ROLAND_SYNTH_PORT(vendor, product, num, name, voices) \
1034 PORT_INFO(vendor, product, num, name, voices, \
1035 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC | \
1036 SNDRV_SEQ_PORT_TYPE_MIDI_GM | \
1037 SNDRV_SEQ_PORT_TYPE_MIDI_GM2 | \
1038 SNDRV_SEQ_PORT_TYPE_MIDI_GS | \
1039 SNDRV_SEQ_PORT_TYPE_MIDI_XG | \
1040 SNDRV_SEQ_PORT_TYPE_HARDWARE | \
1041 SNDRV_SEQ_PORT_TYPE_SYNTHESIZER)
1042 #define SOUNDCANVAS_PORT(vendor, product, num, name, voices) \
1043 PORT_INFO(vendor, product, num, name, voices, \
1044 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC | \
1045 SNDRV_SEQ_PORT_TYPE_MIDI_GM | \
1046 SNDRV_SEQ_PORT_TYPE_MIDI_GM2 | \
1047 SNDRV_SEQ_PORT_TYPE_MIDI_GS | \
1048 SNDRV_SEQ_PORT_TYPE_MIDI_XG | \
1049 SNDRV_SEQ_PORT_TYPE_MIDI_MT32 | \
1050 SNDRV_SEQ_PORT_TYPE_HARDWARE | \
1051 SNDRV_SEQ_PORT_TYPE_SYNTHESIZER)
1053 CONTROL_PORT(0x0582, 0x0000, 2, "%s Control"),
1054 /* Roland SC-8850 */
1055 SOUNDCANVAS_PORT(0x0582, 0x0003, 0, "%s Part A", 128),
1056 SOUNDCANVAS_PORT(0x0582, 0x0003, 1, "%s Part B", 128),
1057 SOUNDCANVAS_PORT(0x0582, 0x0003, 2, "%s Part C", 128),
1058 SOUNDCANVAS_PORT(0x0582, 0x0003, 3, "%s Part D", 128),
1059 EXTERNAL_PORT(0x0582, 0x0003, 4, "%s MIDI 1"),
1060 EXTERNAL_PORT(0x0582, 0x0003, 5, "%s MIDI 2"),
1062 EXTERNAL_PORT(0x0582, 0x0004, 0, "%s MIDI"),
1063 CONTROL_PORT(0x0582, 0x0004, 1, "%s Control"),
1064 /* Roland SC-8820 */
1065 SOUNDCANVAS_PORT(0x0582, 0x0007, 0, "%s Part A", 64),
1066 SOUNDCANVAS_PORT(0x0582, 0x0007, 1, "%s Part B", 64),
1067 EXTERNAL_PORT(0x0582, 0x0007, 2, "%s MIDI"),
1069 SOUNDCANVAS_PORT(0x0582, 0x000b, 0, "%s Part A", 64),
1070 SOUNDCANVAS_PORT(0x0582, 0x000b, 1, "%s Part B", 64),
1071 EXTERNAL_PORT(0x0582, 0x000b, 2, "%s MIDI"),
1073 SOUNDCANVAS_PORT(0x0582, 0x000c, 0, "%s Part A", 64),
1074 SOUNDCANVAS_PORT(0x0582, 0x000c, 1, "%s Part B", 64),
1075 EXTERNAL_PORT(0x0582, 0x000c, 2, "%s MIDI"),
1077 CONTROL_PORT(0x0582, 0x0014, 8, "%s Control"),
1079 ROLAND_SYNTH_PORT(0x0582, 0x0016, 0, "%s Part A", 128),
1080 ROLAND_SYNTH_PORT(0x0582, 0x0016, 1, "%s Part B", 128),
1081 EXTERNAL_PORT(0x0582, 0x0016, 2, "%s MIDI 1"),
1082 EXTERNAL_PORT(0x0582, 0x0016, 3, "%s MIDI 2"),
1084 CONTROL_PORT(0x0582, 0x0023, 5, "%s Control"),
1086 ROLAND_SYNTH_PORT(0x0582, 0x0027, 0, "%s Part A", 64),
1087 ROLAND_SYNTH_PORT(0x0582, 0x0027, 1, "%s Part B", 64),
1088 EXTERNAL_PORT(0x0582, 0x0027, 2, "%s MIDI"),
1090 ROLAND_SYNTH_PORT(0x0582, 0x0029, 0, "%s Part A", 128),
1091 ROLAND_SYNTH_PORT(0x0582, 0x0029, 1, "%s Part B", 128),
1092 EXTERNAL_PORT(0x0582, 0x0029, 2, "%s MIDI 1"),
1093 EXTERNAL_PORT(0x0582, 0x0029, 3, "%s MIDI 2"),
1095 EXTERNAL_PORT(0x0582, 0x002b, 0, "%s MIDI"),
1096 CONTROL_PORT(0x0582, 0x002b, 1, "%s Control"),
1098 EXTERNAL_PORT(0x0582, 0x002f, 0, "%s MIDI"),
1099 EXTERNAL_PORT(0x0582, 0x002f, 1, "%s External MIDI"),
1100 EXTERNAL_PORT(0x0582, 0x002f, 2, "%s Sync"),
1102 EXTERNAL_PORT(0x0582, 0x0033, 0, "%s MIDI"),
1103 EXTERNAL_PORT(0x0582, 0x0033, 1, "%s 1"),
1104 EXTERNAL_PORT(0x0582, 0x0033, 2, "%s 2"),
1106 EXTERNAL_PORT(0x0582, 0x003b, 0, "%s MIDI"),
1107 CONTROL_PORT(0x0582, 0x003b, 1, "%s Control"),
1108 /* Edirol UA-1000 */
1109 EXTERNAL_PORT(0x0582, 0x0044, 0, "%s MIDI"),
1110 CONTROL_PORT(0x0582, 0x0044, 1, "%s Control"),
1112 EXTERNAL_PORT(0x0582, 0x0048, 0, "%s MIDI"),
1113 EXTERNAL_PORT(0x0582, 0x0048, 1, "%s 1"),
1114 EXTERNAL_PORT(0x0582, 0x0048, 2, "%s 2"),
1116 EXTERNAL_PORT(0x0582, 0x004d, 0, "%s MIDI"),
1117 EXTERNAL_PORT(0x0582, 0x004d, 1, "%s 1"),
1118 EXTERNAL_PORT(0x0582, 0x004d, 2, "%s 2"),
1120 CONTROL_PORT(0x0582, 0x009a, 3, "%s Control"),
1121 /* M-Audio MidiSport 8x8 */
1122 CONTROL_PORT(0x0763, 0x1031, 8, "%s Control"),
1123 CONTROL_PORT(0x0763, 0x1033, 8, "%s Control"),
1125 EXTERNAL_PORT(0x07fd, 0x0001, 0, "%s MIDI A"),
1126 EXTERNAL_PORT(0x07fd, 0x0001, 1, "%s MIDI B"),
1127 /* Emagic Unitor8/AMT8/MT4 */
1128 EXTERNAL_PORT(0x086a, 0x0001, 8, "%s Broadcast"),
1129 EXTERNAL_PORT(0x086a, 0x0002, 8, "%s Broadcast"),
1130 EXTERNAL_PORT(0x086a, 0x0003, 4, "%s Broadcast"),
1133 static struct port_info
*find_port_info(struct snd_usb_midi
* umidi
, int number
)
1137 for (i
= 0; i
< ARRAY_SIZE(snd_usbmidi_port_info
); ++i
) {
1138 if (snd_usbmidi_port_info
[i
].id
== umidi
->chip
->usb_id
&&
1139 snd_usbmidi_port_info
[i
].port
== number
)
1140 return &snd_usbmidi_port_info
[i
];
1145 static void snd_usbmidi_get_port_info(struct snd_rawmidi
*rmidi
, int number
,
1146 struct snd_seq_port_info
*seq_port_info
)
1148 struct snd_usb_midi
*umidi
= rmidi
->private_data
;
1149 struct port_info
*port_info
;
1151 /* TODO: read port flags from descriptors */
1152 port_info
= find_port_info(umidi
, number
);
1154 seq_port_info
->type
= port_info
->seq_flags
;
1155 seq_port_info
->midi_voices
= port_info
->voices
;
1159 static void snd_usbmidi_init_substream(struct snd_usb_midi
* umidi
,
1160 int stream
, int number
,
1161 struct snd_rawmidi_substream
** rsubstream
)
1163 struct port_info
*port_info
;
1164 const char *name_format
;
1166 struct snd_rawmidi_substream
*substream
= snd_usbmidi_find_substream(umidi
, stream
, number
);
1168 snd_printd(KERN_ERR
"substream %d:%d not found\n", stream
, number
);
1172 /* TODO: read port name from jack descriptor */
1173 port_info
= find_port_info(umidi
, number
);
1174 name_format
= port_info
? port_info
->name
: "%s MIDI %d";
1175 snprintf(substream
->name
, sizeof(substream
->name
),
1176 name_format
, umidi
->chip
->card
->shortname
, number
+ 1);
1178 *rsubstream
= substream
;
1182 * Creates the endpoints and their ports.
1184 static int snd_usbmidi_create_endpoints(struct snd_usb_midi
* umidi
,
1185 struct snd_usb_midi_endpoint_info
* endpoints
)
1188 int out_ports
= 0, in_ports
= 0;
1190 for (i
= 0; i
< MIDI_MAX_ENDPOINTS
; ++i
) {
1191 if (endpoints
[i
].out_cables
) {
1192 err
= snd_usbmidi_out_endpoint_create(umidi
, &endpoints
[i
],
1193 &umidi
->endpoints
[i
]);
1197 if (endpoints
[i
].in_cables
) {
1198 err
= snd_usbmidi_in_endpoint_create(umidi
, &endpoints
[i
],
1199 &umidi
->endpoints
[i
]);
1204 for (j
= 0; j
< 0x10; ++j
) {
1205 if (endpoints
[i
].out_cables
& (1 << j
)) {
1206 snd_usbmidi_init_substream(umidi
, SNDRV_RAWMIDI_STREAM_OUTPUT
, out_ports
,
1207 &umidi
->endpoints
[i
].out
->ports
[j
].substream
);
1210 if (endpoints
[i
].in_cables
& (1 << j
)) {
1211 snd_usbmidi_init_substream(umidi
, SNDRV_RAWMIDI_STREAM_INPUT
, in_ports
,
1212 &umidi
->endpoints
[i
].in
->ports
[j
].substream
);
1217 snd_printdd(KERN_INFO
"created %d output and %d input ports\n",
1218 out_ports
, in_ports
);
1223 * Returns MIDIStreaming device capabilities.
1225 static int snd_usbmidi_get_ms_info(struct snd_usb_midi
* umidi
,
1226 struct snd_usb_midi_endpoint_info
* endpoints
)
1228 struct usb_interface
* intf
;
1229 struct usb_host_interface
*hostif
;
1230 struct usb_interface_descriptor
* intfd
;
1231 struct usb_ms_header_descriptor
* ms_header
;
1232 struct usb_host_endpoint
*hostep
;
1233 struct usb_endpoint_descriptor
* ep
;
1234 struct usb_ms_endpoint_descriptor
* ms_ep
;
1237 intf
= umidi
->iface
;
1240 hostif
= &intf
->altsetting
[0];
1241 intfd
= get_iface_desc(hostif
);
1242 ms_header
= (struct usb_ms_header_descriptor
*)hostif
->extra
;
1243 if (hostif
->extralen
>= 7 &&
1244 ms_header
->bLength
>= 7 &&
1245 ms_header
->bDescriptorType
== USB_DT_CS_INTERFACE
&&
1246 ms_header
->bDescriptorSubtype
== HEADER
)
1247 snd_printdd(KERN_INFO
"MIDIStreaming version %02x.%02x\n",
1248 ms_header
->bcdMSC
[1], ms_header
->bcdMSC
[0]);
1250 snd_printk(KERN_WARNING
"MIDIStreaming interface descriptor not found\n");
1253 for (i
= 0; i
< intfd
->bNumEndpoints
; ++i
) {
1254 hostep
= &hostif
->endpoint
[i
];
1255 ep
= get_ep_desc(hostep
);
1256 if ((ep
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) != USB_ENDPOINT_XFER_BULK
&&
1257 (ep
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) != USB_ENDPOINT_XFER_INT
)
1259 ms_ep
= (struct usb_ms_endpoint_descriptor
*)hostep
->extra
;
1260 if (hostep
->extralen
< 4 ||
1261 ms_ep
->bLength
< 4 ||
1262 ms_ep
->bDescriptorType
!= USB_DT_CS_ENDPOINT
||
1263 ms_ep
->bDescriptorSubtype
!= MS_GENERAL
)
1265 if ((ep
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
) == USB_DIR_OUT
) {
1266 if (endpoints
[epidx
].out_ep
) {
1267 if (++epidx
>= MIDI_MAX_ENDPOINTS
) {
1268 snd_printk(KERN_WARNING
"too many endpoints\n");
1272 endpoints
[epidx
].out_ep
= ep
->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
;
1273 if ((ep
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) == USB_ENDPOINT_XFER_INT
)
1274 endpoints
[epidx
].out_interval
= ep
->bInterval
;
1275 endpoints
[epidx
].out_cables
= (1 << ms_ep
->bNumEmbMIDIJack
) - 1;
1276 snd_printdd(KERN_INFO
"EP %02X: %d jack(s)\n",
1277 ep
->bEndpointAddress
, ms_ep
->bNumEmbMIDIJack
);
1279 if (endpoints
[epidx
].in_ep
) {
1280 if (++epidx
>= MIDI_MAX_ENDPOINTS
) {
1281 snd_printk(KERN_WARNING
"too many endpoints\n");
1285 endpoints
[epidx
].in_ep
= ep
->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
;
1286 if ((ep
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) == USB_ENDPOINT_XFER_INT
)
1287 endpoints
[epidx
].in_interval
= ep
->bInterval
;
1288 endpoints
[epidx
].in_cables
= (1 << ms_ep
->bNumEmbMIDIJack
) - 1;
1289 snd_printdd(KERN_INFO
"EP %02X: %d jack(s)\n",
1290 ep
->bEndpointAddress
, ms_ep
->bNumEmbMIDIJack
);
1297 * On Roland devices, use the second alternate setting to be able to use
1298 * the interrupt input endpoint.
1300 static void snd_usbmidi_switch_roland_altsetting(struct snd_usb_midi
* umidi
)
1302 struct usb_interface
* intf
;
1303 struct usb_host_interface
*hostif
;
1304 struct usb_interface_descriptor
* intfd
;
1306 intf
= umidi
->iface
;
1307 if (!intf
|| intf
->num_altsetting
!= 2)
1310 hostif
= &intf
->altsetting
[1];
1311 intfd
= get_iface_desc(hostif
);
1312 if (intfd
->bNumEndpoints
!= 2 ||
1313 (get_endpoint(hostif
, 0)->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) != USB_ENDPOINT_XFER_BULK
||
1314 (get_endpoint(hostif
, 1)->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) != USB_ENDPOINT_XFER_INT
)
1317 snd_printdd(KERN_INFO
"switching to altsetting %d with int ep\n",
1318 intfd
->bAlternateSetting
);
1319 usb_set_interface(umidi
->chip
->dev
, intfd
->bInterfaceNumber
,
1320 intfd
->bAlternateSetting
);
1324 * Try to find any usable endpoints in the interface.
1326 static int snd_usbmidi_detect_endpoints(struct snd_usb_midi
* umidi
,
1327 struct snd_usb_midi_endpoint_info
* endpoint
,
1330 struct usb_interface
* intf
;
1331 struct usb_host_interface
*hostif
;
1332 struct usb_interface_descriptor
* intfd
;
1333 struct usb_endpoint_descriptor
* epd
;
1334 int i
, out_eps
= 0, in_eps
= 0;
1336 if (USB_ID_VENDOR(umidi
->chip
->usb_id
) == 0x0582)
1337 snd_usbmidi_switch_roland_altsetting(umidi
);
1339 if (endpoint
[0].out_ep
|| endpoint
[0].in_ep
)
1342 intf
= umidi
->iface
;
1343 if (!intf
|| intf
->num_altsetting
< 1)
1345 hostif
= intf
->cur_altsetting
;
1346 intfd
= get_iface_desc(hostif
);
1348 for (i
= 0; i
< intfd
->bNumEndpoints
; ++i
) {
1349 epd
= get_endpoint(hostif
, i
);
1350 if ((epd
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) != USB_ENDPOINT_XFER_BULK
&&
1351 (epd
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) != USB_ENDPOINT_XFER_INT
)
1353 if (out_eps
< max_endpoints
&&
1354 (epd
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
) == USB_DIR_OUT
) {
1355 endpoint
[out_eps
].out_ep
= epd
->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
;
1356 if ((epd
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) == USB_ENDPOINT_XFER_INT
)
1357 endpoint
[out_eps
].out_interval
= epd
->bInterval
;
1360 if (in_eps
< max_endpoints
&&
1361 (epd
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
) == USB_DIR_IN
) {
1362 endpoint
[in_eps
].in_ep
= epd
->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
;
1363 if ((epd
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) == USB_ENDPOINT_XFER_INT
)
1364 endpoint
[in_eps
].in_interval
= epd
->bInterval
;
1368 return (out_eps
|| in_eps
) ? 0 : -ENOENT
;
1372 * Detects the endpoints for one-port-per-endpoint protocols.
1374 static int snd_usbmidi_detect_per_port_endpoints(struct snd_usb_midi
* umidi
,
1375 struct snd_usb_midi_endpoint_info
* endpoints
)
1379 err
= snd_usbmidi_detect_endpoints(umidi
, endpoints
, MIDI_MAX_ENDPOINTS
);
1380 for (i
= 0; i
< MIDI_MAX_ENDPOINTS
; ++i
) {
1381 if (endpoints
[i
].out_ep
)
1382 endpoints
[i
].out_cables
= 0x0001;
1383 if (endpoints
[i
].in_ep
)
1384 endpoints
[i
].in_cables
= 0x0001;
1390 * Detects the endpoints and ports of Yamaha devices.
1392 static int snd_usbmidi_detect_yamaha(struct snd_usb_midi
* umidi
,
1393 struct snd_usb_midi_endpoint_info
* endpoint
)
1395 struct usb_interface
* intf
;
1396 struct usb_host_interface
*hostif
;
1397 struct usb_interface_descriptor
* intfd
;
1400 intf
= umidi
->iface
;
1403 hostif
= intf
->altsetting
;
1404 intfd
= get_iface_desc(hostif
);
1405 if (intfd
->bNumEndpoints
< 1)
1409 * For each port there is one MIDI_IN/OUT_JACK descriptor, not
1410 * necessarily with any useful contents. So simply count 'em.
1412 for (cs_desc
= hostif
->extra
;
1413 cs_desc
< hostif
->extra
+ hostif
->extralen
&& cs_desc
[0] >= 2;
1414 cs_desc
+= cs_desc
[0]) {
1415 if (cs_desc
[1] == USB_DT_CS_INTERFACE
) {
1416 if (cs_desc
[2] == MIDI_IN_JACK
)
1417 endpoint
->in_cables
= (endpoint
->in_cables
<< 1) | 1;
1418 else if (cs_desc
[2] == MIDI_OUT_JACK
)
1419 endpoint
->out_cables
= (endpoint
->out_cables
<< 1) | 1;
1422 if (!endpoint
->in_cables
&& !endpoint
->out_cables
)
1425 return snd_usbmidi_detect_endpoints(umidi
, endpoint
, 1);
1429 * Creates the endpoints and their ports for Midiman devices.
1431 static int snd_usbmidi_create_endpoints_midiman(struct snd_usb_midi
* umidi
,
1432 struct snd_usb_midi_endpoint_info
* endpoint
)
1434 struct snd_usb_midi_endpoint_info ep_info
;
1435 struct usb_interface
* intf
;
1436 struct usb_host_interface
*hostif
;
1437 struct usb_interface_descriptor
* intfd
;
1438 struct usb_endpoint_descriptor
* epd
;
1441 intf
= umidi
->iface
;
1444 hostif
= intf
->altsetting
;
1445 intfd
= get_iface_desc(hostif
);
1447 * The various MidiSport devices have more or less random endpoint
1448 * numbers, so we have to identify the endpoints by their index in
1449 * the descriptor array, like the driver for that other OS does.
1451 * There is one interrupt input endpoint for all input ports, one
1452 * bulk output endpoint for even-numbered ports, and one for odd-
1453 * numbered ports. Both bulk output endpoints have corresponding
1454 * input bulk endpoints (at indices 1 and 3) which aren't used.
1456 if (intfd
->bNumEndpoints
< (endpoint
->out_cables
> 0x0001 ? 5 : 3)) {
1457 snd_printdd(KERN_ERR
"not enough endpoints\n");
1461 epd
= get_endpoint(hostif
, 0);
1462 if ((epd
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
) != USB_DIR_IN
||
1463 (epd
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) != USB_ENDPOINT_XFER_INT
) {
1464 snd_printdd(KERN_ERR
"endpoint[0] isn't interrupt\n");
1467 epd
= get_endpoint(hostif
, 2);
1468 if ((epd
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
) != USB_DIR_OUT
||
1469 (epd
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) != USB_ENDPOINT_XFER_BULK
) {
1470 snd_printdd(KERN_ERR
"endpoint[2] isn't bulk output\n");
1473 if (endpoint
->out_cables
> 0x0001) {
1474 epd
= get_endpoint(hostif
, 4);
1475 if ((epd
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
) != USB_DIR_OUT
||
1476 (epd
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) != USB_ENDPOINT_XFER_BULK
) {
1477 snd_printdd(KERN_ERR
"endpoint[4] isn't bulk output\n");
1482 ep_info
.out_ep
= get_endpoint(hostif
, 2)->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
;
1483 ep_info
.out_cables
= endpoint
->out_cables
& 0x5555;
1484 err
= snd_usbmidi_out_endpoint_create(umidi
, &ep_info
, &umidi
->endpoints
[0]);
1488 ep_info
.in_ep
= get_endpoint(hostif
, 0)->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
;
1489 ep_info
.in_interval
= get_endpoint(hostif
, 0)->bInterval
;
1490 ep_info
.in_cables
= endpoint
->in_cables
;
1491 err
= snd_usbmidi_in_endpoint_create(umidi
, &ep_info
, &umidi
->endpoints
[0]);
1495 if (endpoint
->out_cables
> 0x0001) {
1496 ep_info
.out_ep
= get_endpoint(hostif
, 4)->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
;
1497 ep_info
.out_cables
= endpoint
->out_cables
& 0xaaaa;
1498 err
= snd_usbmidi_out_endpoint_create(umidi
, &ep_info
, &umidi
->endpoints
[1]);
1503 for (cable
= 0; cable
< 0x10; ++cable
) {
1504 if (endpoint
->out_cables
& (1 << cable
))
1505 snd_usbmidi_init_substream(umidi
, SNDRV_RAWMIDI_STREAM_OUTPUT
, cable
,
1506 &umidi
->endpoints
[cable
& 1].out
->ports
[cable
].substream
);
1507 if (endpoint
->in_cables
& (1 << cable
))
1508 snd_usbmidi_init_substream(umidi
, SNDRV_RAWMIDI_STREAM_INPUT
, cable
,
1509 &umidi
->endpoints
[0].in
->ports
[cable
].substream
);
1514 static struct snd_rawmidi_global_ops snd_usbmidi_ops
= {
1515 .get_port_info
= snd_usbmidi_get_port_info
,
1518 static int snd_usbmidi_create_rawmidi(struct snd_usb_midi
* umidi
,
1519 int out_ports
, int in_ports
)
1521 struct snd_rawmidi
*rmidi
;
1524 err
= snd_rawmidi_new(umidi
->chip
->card
, "USB MIDI",
1525 umidi
->chip
->next_midi_device
++,
1526 out_ports
, in_ports
, &rmidi
);
1529 strcpy(rmidi
->name
, umidi
->chip
->card
->shortname
);
1530 rmidi
->info_flags
= SNDRV_RAWMIDI_INFO_OUTPUT
|
1531 SNDRV_RAWMIDI_INFO_INPUT
|
1532 SNDRV_RAWMIDI_INFO_DUPLEX
;
1533 rmidi
->ops
= &snd_usbmidi_ops
;
1534 rmidi
->private_data
= umidi
;
1535 rmidi
->private_free
= snd_usbmidi_rawmidi_free
;
1536 snd_rawmidi_set_ops(rmidi
, SNDRV_RAWMIDI_STREAM_OUTPUT
, &snd_usbmidi_output_ops
);
1537 snd_rawmidi_set_ops(rmidi
, SNDRV_RAWMIDI_STREAM_INPUT
, &snd_usbmidi_input_ops
);
1539 umidi
->rmidi
= rmidi
;
1544 * Temporarily stop input.
1546 void snd_usbmidi_input_stop(struct list_head
* p
)
1548 struct snd_usb_midi
* umidi
;
1551 umidi
= list_entry(p
, struct snd_usb_midi
, list
);
1552 for (i
= 0; i
< MIDI_MAX_ENDPOINTS
; ++i
) {
1553 struct snd_usb_midi_endpoint
* ep
= &umidi
->endpoints
[i
];
1555 usb_kill_urb(ep
->in
->urb
);
1559 static void snd_usbmidi_input_start_ep(struct snd_usb_midi_in_endpoint
* ep
)
1562 struct urb
* urb
= ep
->urb
;
1563 urb
->dev
= ep
->umidi
->chip
->dev
;
1564 snd_usbmidi_submit_urb(urb
, GFP_KERNEL
);
1569 * Resume input after a call to snd_usbmidi_input_stop().
1571 void snd_usbmidi_input_start(struct list_head
* p
)
1573 struct snd_usb_midi
* umidi
;
1576 umidi
= list_entry(p
, struct snd_usb_midi
, list
);
1577 for (i
= 0; i
< MIDI_MAX_ENDPOINTS
; ++i
)
1578 snd_usbmidi_input_start_ep(umidi
->endpoints
[i
].in
);
1582 * Creates and registers everything needed for a MIDI streaming interface.
1584 int snd_usb_create_midi_interface(struct snd_usb_audio
* chip
,
1585 struct usb_interface
* iface
,
1586 const struct snd_usb_audio_quirk
* quirk
)
1588 struct snd_usb_midi
* umidi
;
1589 struct snd_usb_midi_endpoint_info endpoints
[MIDI_MAX_ENDPOINTS
];
1590 int out_ports
, in_ports
;
1593 umidi
= kzalloc(sizeof(*umidi
), GFP_KERNEL
);
1597 umidi
->iface
= iface
;
1598 umidi
->quirk
= quirk
;
1599 umidi
->usb_protocol_ops
= &snd_usbmidi_standard_ops
;
1600 init_timer(&umidi
->error_timer
);
1601 umidi
->error_timer
.function
= snd_usbmidi_error_timer
;
1602 umidi
->error_timer
.data
= (unsigned long)umidi
;
1604 /* detect the endpoint(s) to use */
1605 memset(endpoints
, 0, sizeof(endpoints
));
1606 switch (quirk
? quirk
->type
: QUIRK_MIDI_STANDARD_INTERFACE
) {
1607 case QUIRK_MIDI_STANDARD_INTERFACE
:
1608 err
= snd_usbmidi_get_ms_info(umidi
, endpoints
);
1610 case QUIRK_MIDI_FIXED_ENDPOINT
:
1611 memcpy(&endpoints
[0], quirk
->data
,
1612 sizeof(struct snd_usb_midi_endpoint_info
));
1613 err
= snd_usbmidi_detect_endpoints(umidi
, &endpoints
[0], 1);
1615 case QUIRK_MIDI_YAMAHA
:
1616 err
= snd_usbmidi_detect_yamaha(umidi
, &endpoints
[0]);
1618 case QUIRK_MIDI_MIDIMAN
:
1619 umidi
->usb_protocol_ops
= &snd_usbmidi_midiman_ops
;
1620 memcpy(&endpoints
[0], quirk
->data
,
1621 sizeof(struct snd_usb_midi_endpoint_info
));
1624 case QUIRK_MIDI_NOVATION
:
1625 umidi
->usb_protocol_ops
= &snd_usbmidi_novation_ops
;
1626 err
= snd_usbmidi_detect_per_port_endpoints(umidi
, endpoints
);
1628 case QUIRK_MIDI_RAW
:
1629 umidi
->usb_protocol_ops
= &snd_usbmidi_raw_ops
;
1630 err
= snd_usbmidi_detect_per_port_endpoints(umidi
, endpoints
);
1632 case QUIRK_MIDI_EMAGIC
:
1633 umidi
->usb_protocol_ops
= &snd_usbmidi_emagic_ops
;
1634 memcpy(&endpoints
[0], quirk
->data
,
1635 sizeof(struct snd_usb_midi_endpoint_info
));
1636 err
= snd_usbmidi_detect_endpoints(umidi
, &endpoints
[0], 1);
1638 case QUIRK_MIDI_CME
:
1639 err
= snd_usbmidi_detect_per_port_endpoints(umidi
, endpoints
);
1642 snd_printd(KERN_ERR
"invalid quirk type %d\n", quirk
->type
);
1651 /* create rawmidi device */
1654 for (i
= 0; i
< MIDI_MAX_ENDPOINTS
; ++i
) {
1655 out_ports
+= snd_usbmidi_count_bits(endpoints
[i
].out_cables
);
1656 in_ports
+= snd_usbmidi_count_bits(endpoints
[i
].in_cables
);
1658 err
= snd_usbmidi_create_rawmidi(umidi
, out_ports
, in_ports
);
1664 /* create endpoint/port structures */
1665 if (quirk
&& quirk
->type
== QUIRK_MIDI_MIDIMAN
)
1666 err
= snd_usbmidi_create_endpoints_midiman(umidi
, &endpoints
[0]);
1668 err
= snd_usbmidi_create_endpoints(umidi
, endpoints
);
1670 snd_usbmidi_free(umidi
);
1674 list_add(&umidi
->list
, &umidi
->chip
->midi_list
);
1676 for (i
= 0; i
< MIDI_MAX_ENDPOINTS
; ++i
)
1677 snd_usbmidi_input_start_ep(umidi
->endpoints
[i
].in
);
1681 EXPORT_SYMBOL(snd_usb_create_midi_interface
);
1682 EXPORT_SYMBOL(snd_usbmidi_input_stop
);
1683 EXPORT_SYMBOL(snd_usbmidi_input_start
);
1684 EXPORT_SYMBOL(snd_usbmidi_disconnect
);