]> bbs.cooldavid.org Git - net-next-2.6.git/blame - sound/usb/usbmidi.c
ALSA: usbaudio: consolidate header files
[net-next-2.6.git] / sound / usb / usbmidi.c
CommitLineData
1da177e4
LT
1/*
2 * usbmidi.c - ALSA USB MIDI driver
3 *
96f61d9a 4 * Copyright (c) 2002-2009 Clemens Ladisch
1da177e4
LT
5 * All rights reserved.
6 *
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
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
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.
19 *
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
23 * version.
24 *
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
35 * SUCH DAMAGE.
36 */
37
1da177e4
LT
38#include <linux/kernel.h>
39#include <linux/types.h>
40#include <linux/bitops.h>
41#include <linux/interrupt.h>
42#include <linux/spinlock.h>
43#include <linux/string.h>
44#include <linux/init.h>
45#include <linux/slab.h>
c8846970 46#include <linux/timer.h>
1da177e4 47#include <linux/usb.h>
a65dd997 48#include <linux/wait.h>
de48c7bc
DM
49#include <linux/usb/audio.h>
50
1da177e4 51#include <sound/core.h>
96f61d9a 52#include <sound/control.h>
1da177e4 53#include <sound/rawmidi.h>
a7b928ac 54#include <sound/asequencer.h>
1da177e4
LT
55#include "usbaudio.h"
56
57
58/*
59 * define this to log all USB packets
60 */
61/* #define DUMP_PACKETS */
62
c8846970
CL
63/*
64 * how long to wait after some USB errors, so that khubd can disconnect() us
65 * without too many spurious errors
66 */
67#define ERROR_DELAY_JIFFIES (HZ / 10)
68
ed4affa5 69#define OUTPUT_URBS 7
4773d1fb
CL
70#define INPUT_URBS 7
71
1da177e4
LT
72
73MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
74MODULE_DESCRIPTION("USB Audio/MIDI helper module");
75MODULE_LICENSE("Dual BSD/GPL");
76
77
78struct usb_ms_header_descriptor {
79 __u8 bLength;
80 __u8 bDescriptorType;
81 __u8 bDescriptorSubtype;
82 __u8 bcdMSC[2];
83 __le16 wTotalLength;
84} __attribute__ ((packed));
85
86struct usb_ms_endpoint_descriptor {
87 __u8 bLength;
88 __u8 bDescriptorType;
89 __u8 bDescriptorSubtype;
90 __u8 bNumEmbMIDIJack;
91 __u8 baAssocJackID[0];
92} __attribute__ ((packed));
93
86e07d34
TI
94struct snd_usb_midi_in_endpoint;
95struct snd_usb_midi_out_endpoint;
96struct snd_usb_midi_endpoint;
1da177e4
LT
97
98struct usb_protocol_ops {
86e07d34 99 void (*input)(struct snd_usb_midi_in_endpoint*, uint8_t*, int);
ed4affa5 100 void (*output)(struct snd_usb_midi_out_endpoint *ep, struct urb *urb);
1da177e4 101 void (*output_packet)(struct urb*, uint8_t, uint8_t, uint8_t, uint8_t);
86e07d34
TI
102 void (*init_out_endpoint)(struct snd_usb_midi_out_endpoint*);
103 void (*finish_out_endpoint)(struct snd_usb_midi_out_endpoint*);
1da177e4
LT
104};
105
106struct snd_usb_midi {
d82af9f9
CL
107 struct usb_device *dev;
108 struct snd_card *card;
1da177e4 109 struct usb_interface *iface;
86e07d34
TI
110 const struct snd_usb_audio_quirk *quirk;
111 struct snd_rawmidi *rmidi;
1da177e4
LT
112 struct usb_protocol_ops* usb_protocol_ops;
113 struct list_head list;
c8846970 114 struct timer_list error_timer;
c0792e00 115 spinlock_t disc_lock;
96f61d9a 116 struct mutex mutex;
d82af9f9
CL
117 u32 usb_id;
118 int next_midi_device;
1da177e4
LT
119
120 struct snd_usb_midi_endpoint {
86e07d34
TI
121 struct snd_usb_midi_out_endpoint *out;
122 struct snd_usb_midi_in_endpoint *in;
1da177e4
LT
123 } endpoints[MIDI_MAX_ENDPOINTS];
124 unsigned long input_triggered;
96f61d9a 125 unsigned int opened;
c0792e00 126 unsigned char disconnected;
96f61d9a
CL
127
128 struct snd_kcontrol *roland_load_ctl;
1da177e4
LT
129};
130
131struct snd_usb_midi_out_endpoint {
86e07d34 132 struct snd_usb_midi* umidi;
ed4affa5
CL
133 struct out_urb_context {
134 struct urb *urb;
135 struct snd_usb_midi_out_endpoint *ep;
136 } urbs[OUTPUT_URBS];
137 unsigned int active_urbs;
a65dd997 138 unsigned int drain_urbs;
1da177e4
LT
139 int max_transfer; /* size of urb buffer */
140 struct tasklet_struct tasklet;
a65dd997 141 unsigned int next_urb;
1da177e4
LT
142 spinlock_t buffer_lock;
143
144 struct usbmidi_out_port {
86e07d34
TI
145 struct snd_usb_midi_out_endpoint* ep;
146 struct snd_rawmidi_substream *substream;
1da177e4
LT
147 int active;
148 uint8_t cable; /* cable number << 4 */
149 uint8_t state;
150#define STATE_UNKNOWN 0
151#define STATE_1PARAM 1
152#define STATE_2PARAM_1 2
153#define STATE_2PARAM_2 3
154#define STATE_SYSEX_0 4
155#define STATE_SYSEX_1 5
156#define STATE_SYSEX_2 6
157 uint8_t data[2];
158 } ports[0x10];
159 int current_port;
a65dd997
CL
160
161 wait_queue_head_t drain_wait;
1da177e4
LT
162};
163
164struct snd_usb_midi_in_endpoint {
86e07d34 165 struct snd_usb_midi* umidi;
4773d1fb 166 struct urb* urbs[INPUT_URBS];
1da177e4 167 struct usbmidi_in_port {
86e07d34 168 struct snd_rawmidi_substream *substream;
d05cc104 169 u8 running_status_length;
1da177e4 170 } ports[0x10];
c8846970
CL
171 u8 seen_f5;
172 u8 error_resubmit;
1da177e4
LT
173 int current_port;
174};
175
86e07d34 176static void snd_usbmidi_do_output(struct snd_usb_midi_out_endpoint* ep);
1da177e4
LT
177
178static const uint8_t snd_usbmidi_cin_length[] = {
179 0, 0, 2, 3, 3, 1, 2, 3, 3, 3, 3, 3, 2, 2, 3, 1
180};
181
182/*
183 * Submits the URB, with error handling.
184 */
55016f10 185static int snd_usbmidi_submit_urb(struct urb* urb, gfp_t flags)
1da177e4
LT
186{
187 int err = usb_submit_urb(urb, flags);
188 if (err < 0 && err != -ENODEV)
189 snd_printk(KERN_ERR "usb_submit_urb: %d\n", err);
190 return err;
191}
192
193/*
194 * Error handling for URB completion functions.
195 */
196static int snd_usbmidi_urb_error(int status)
197{
c8846970
CL
198 switch (status) {
199 /* manually unlinked, or device gone */
200 case -ENOENT:
201 case -ECONNRESET:
202 case -ESHUTDOWN:
203 case -ENODEV:
204 return -ENODEV;
205 /* errors that might occur during unplugging */
38e2bfc9
PZ
206 case -EPROTO:
207 case -ETIME:
208 case -EILSEQ:
c8846970
CL
209 return -EIO;
210 default:
211 snd_printk(KERN_ERR "urb status %d\n", status);
212 return 0; /* continue */
213 }
1da177e4
LT
214}
215
216/*
217 * Receives a chunk of MIDI data.
218 */
86e07d34 219static void snd_usbmidi_input_data(struct snd_usb_midi_in_endpoint* ep, int portidx,
1da177e4
LT
220 uint8_t* data, int length)
221{
86e07d34 222 struct usbmidi_in_port* port = &ep->ports[portidx];
1da177e4
LT
223
224 if (!port->substream) {
225 snd_printd("unexpected port %d!\n", portidx);
226 return;
227 }
228 if (!test_bit(port->substream->number, &ep->umidi->input_triggered))
229 return;
230 snd_rawmidi_receive(port->substream, data, length);
231}
232
233#ifdef DUMP_PACKETS
234static void dump_urb(const char *type, const u8 *data, int length)
235{
236 snd_printk(KERN_DEBUG "%s packet: [", type);
237 for (; length > 0; ++data, --length)
238 printk(" %02x", *data);
239 printk(" ]\n");
240}
241#else
242#define dump_urb(type, data, length) /* nothing */
243#endif
244
245/*
246 * Processes the data read from the device.
247 */
7d12e780 248static void snd_usbmidi_in_urb_complete(struct urb* urb)
1da177e4 249{
86e07d34 250 struct snd_usb_midi_in_endpoint* ep = urb->context;
1da177e4
LT
251
252 if (urb->status == 0) {
253 dump_urb("received", urb->transfer_buffer, urb->actual_length);
254 ep->umidi->usb_protocol_ops->input(ep, urb->transfer_buffer,
255 urb->actual_length);
256 } else {
c8846970
CL
257 int err = snd_usbmidi_urb_error(urb->status);
258 if (err < 0) {
259 if (err != -ENODEV) {
260 ep->error_resubmit = 1;
261 mod_timer(&ep->umidi->error_timer,
262 jiffies + ERROR_DELAY_JIFFIES);
263 }
1da177e4 264 return;
c8846970 265 }
1da177e4
LT
266 }
267
d82af9f9 268 urb->dev = ep->umidi->dev;
3cfc1eb1 269 snd_usbmidi_submit_urb(urb, GFP_ATOMIC);
1da177e4
LT
270}
271
7d12e780 272static void snd_usbmidi_out_urb_complete(struct urb* urb)
1da177e4 273{
ed4affa5
CL
274 struct out_urb_context *context = urb->context;
275 struct snd_usb_midi_out_endpoint* ep = context->ep;
a65dd997 276 unsigned int urb_index;
1da177e4
LT
277
278 spin_lock(&ep->buffer_lock);
a65dd997
CL
279 urb_index = context - ep->urbs;
280 ep->active_urbs &= ~(1 << urb_index);
281 if (unlikely(ep->drain_urbs)) {
282 ep->drain_urbs &= ~(1 << urb_index);
283 wake_up(&ep->drain_wait);
284 }
1da177e4
LT
285 spin_unlock(&ep->buffer_lock);
286 if (urb->status < 0) {
c8846970
CL
287 int err = snd_usbmidi_urb_error(urb->status);
288 if (err < 0) {
289 if (err != -ENODEV)
290 mod_timer(&ep->umidi->error_timer,
291 jiffies + ERROR_DELAY_JIFFIES);
1da177e4 292 return;
c8846970 293 }
1da177e4
LT
294 }
295 snd_usbmidi_do_output(ep);
296}
297
298/*
299 * This is called when some data should be transferred to the device
300 * (from one or more substreams).
301 */
86e07d34 302static void snd_usbmidi_do_output(struct snd_usb_midi_out_endpoint* ep)
1da177e4 303{
ed4affa5
CL
304 unsigned int urb_index;
305 struct urb* urb;
1da177e4
LT
306 unsigned long flags;
307
308 spin_lock_irqsave(&ep->buffer_lock, flags);
d82af9f9 309 if (ep->umidi->disconnected) {
1da177e4
LT
310 spin_unlock_irqrestore(&ep->buffer_lock, flags);
311 return;
312 }
313
a65dd997 314 urb_index = ep->next_urb;
ed4affa5 315 for (;;) {
a65dd997
CL
316 if (!(ep->active_urbs & (1 << urb_index))) {
317 urb = ep->urbs[urb_index].urb;
318 urb->transfer_buffer_length = 0;
319 ep->umidi->usb_protocol_ops->output(ep, urb);
320 if (urb->transfer_buffer_length == 0)
ed4affa5 321 break;
1da177e4 322
a65dd997
CL
323 dump_urb("sending", urb->transfer_buffer,
324 urb->transfer_buffer_length);
d82af9f9 325 urb->dev = ep->umidi->dev;
a65dd997
CL
326 if (snd_usbmidi_submit_urb(urb, GFP_ATOMIC) < 0)
327 break;
328 ep->active_urbs |= 1 << urb_index;
329 }
330 if (++urb_index >= OUTPUT_URBS)
331 urb_index = 0;
332 if (urb_index == ep->next_urb)
ed4affa5 333 break;
1da177e4 334 }
a65dd997 335 ep->next_urb = urb_index;
1da177e4
LT
336 spin_unlock_irqrestore(&ep->buffer_lock, flags);
337}
338
339static void snd_usbmidi_out_tasklet(unsigned long data)
340{
86e07d34 341 struct snd_usb_midi_out_endpoint* ep = (struct snd_usb_midi_out_endpoint *) data;
1da177e4
LT
342
343 snd_usbmidi_do_output(ep);
344}
345
c8846970
CL
346/* called after transfers had been interrupted due to some USB error */
347static void snd_usbmidi_error_timer(unsigned long data)
348{
86e07d34 349 struct snd_usb_midi *umidi = (struct snd_usb_midi *)data;
4773d1fb 350 unsigned int i, j;
c8846970 351
c0792e00
TI
352 spin_lock(&umidi->disc_lock);
353 if (umidi->disconnected) {
354 spin_unlock(&umidi->disc_lock);
355 return;
356 }
c8846970 357 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
86e07d34 358 struct snd_usb_midi_in_endpoint *in = umidi->endpoints[i].in;
c8846970
CL
359 if (in && in->error_resubmit) {
360 in->error_resubmit = 0;
4773d1fb 361 for (j = 0; j < INPUT_URBS; ++j) {
d82af9f9 362 in->urbs[j]->dev = umidi->dev;
4773d1fb
CL
363 snd_usbmidi_submit_urb(in->urbs[j], GFP_ATOMIC);
364 }
c8846970
CL
365 }
366 if (umidi->endpoints[i].out)
367 snd_usbmidi_do_output(umidi->endpoints[i].out);
368 }
c0792e00 369 spin_unlock(&umidi->disc_lock);
c8846970
CL
370}
371
1da177e4 372/* helper function to send static data that may not DMA-able */
86e07d34 373static int send_bulk_static_data(struct snd_usb_midi_out_endpoint* ep,
1da177e4
LT
374 const void *data, int len)
375{
ed4affa5 376 int err = 0;
52978be6 377 void *buf = kmemdup(data, len, GFP_KERNEL);
1da177e4
LT
378 if (!buf)
379 return -ENOMEM;
1da177e4 380 dump_urb("sending", buf, len);
ed4affa5 381 if (ep->urbs[0].urb)
d82af9f9 382 err = usb_bulk_msg(ep->umidi->dev, ep->urbs[0].urb->pipe,
ed4affa5 383 buf, len, NULL, 250);
1da177e4
LT
384 kfree(buf);
385 return err;
386}
387
388/*
389 * Standard USB MIDI protocol: see the spec.
390 * Midiman protocol: like the standard protocol, but the control byte is the
391 * fourth byte in each packet, and uses length instead of CIN.
392 */
393
86e07d34 394static void snd_usbmidi_standard_input(struct snd_usb_midi_in_endpoint* ep,
1da177e4
LT
395 uint8_t* buffer, int buffer_length)
396{
397 int i;
398
399 for (i = 0; i + 3 < buffer_length; i += 4)
400 if (buffer[i] != 0) {
401 int cable = buffer[i] >> 4;
402 int length = snd_usbmidi_cin_length[buffer[i] & 0x0f];
403 snd_usbmidi_input_data(ep, cable, &buffer[i + 1], length);
404 }
405}
406
86e07d34 407static void snd_usbmidi_midiman_input(struct snd_usb_midi_in_endpoint* ep,
1da177e4
LT
408 uint8_t* buffer, int buffer_length)
409{
410 int i;
411
412 for (i = 0; i + 3 < buffer_length; i += 4)
413 if (buffer[i + 3] != 0) {
414 int port = buffer[i + 3] >> 4;
415 int length = buffer[i + 3] & 3;
416 snd_usbmidi_input_data(ep, port, &buffer[i], length);
417 }
418}
419
d05cc104
CL
420/*
421 * Buggy M-Audio device: running status on input results in a packet that has
422 * the data bytes but not the status byte and that is marked with CIN 4.
423 */
424static void snd_usbmidi_maudio_broken_running_status_input(
425 struct snd_usb_midi_in_endpoint* ep,
426 uint8_t* buffer, int buffer_length)
427{
428 int i;
429
430 for (i = 0; i + 3 < buffer_length; i += 4)
431 if (buffer[i] != 0) {
432 int cable = buffer[i] >> 4;
433 u8 cin = buffer[i] & 0x0f;
434 struct usbmidi_in_port *port = &ep->ports[cable];
435 int length;
436
437 length = snd_usbmidi_cin_length[cin];
438 if (cin == 0xf && buffer[i + 1] >= 0xf8)
439 ; /* realtime msg: no running status change */
440 else if (cin >= 0x8 && cin <= 0xe)
441 /* channel msg */
442 port->running_status_length = length - 1;
443 else if (cin == 0x4 &&
444 port->running_status_length != 0 &&
445 buffer[i + 1] < 0x80)
446 /* CIN 4 that is not a SysEx */
447 length = port->running_status_length;
448 else
449 /*
450 * All other msgs cannot begin running status.
451 * (A channel msg sent as two or three CIN 0xF
452 * packets could in theory, but this device
453 * doesn't use this format.)
454 */
455 port->running_status_length = 0;
456 snd_usbmidi_input_data(ep, cable, &buffer[i + 1], length);
457 }
458}
459
61870aed
CL
460/*
461 * CME protocol: like the standard protocol, but SysEx commands are sent as a
462 * single USB packet preceded by a 0x0F byte.
463 */
464static void snd_usbmidi_cme_input(struct snd_usb_midi_in_endpoint *ep,
465 uint8_t *buffer, int buffer_length)
466{
467 if (buffer_length < 2 || (buffer[0] & 0x0f) != 0x0f)
468 snd_usbmidi_standard_input(ep, buffer, buffer_length);
469 else
470 snd_usbmidi_input_data(ep, buffer[0] >> 4,
471 &buffer[1], buffer_length - 1);
472}
473
1da177e4
LT
474/*
475 * Adds one USB MIDI packet to the output buffer.
476 */
477static void snd_usbmidi_output_standard_packet(struct urb* urb, uint8_t p0,
478 uint8_t p1, uint8_t p2, uint8_t p3)
479{
480
481 uint8_t* buf = (uint8_t*)urb->transfer_buffer + urb->transfer_buffer_length;
482 buf[0] = p0;
483 buf[1] = p1;
484 buf[2] = p2;
485 buf[3] = p3;
486 urb->transfer_buffer_length += 4;
487}
488
489/*
490 * Adds one Midiman packet to the output buffer.
491 */
492static void snd_usbmidi_output_midiman_packet(struct urb* urb, uint8_t p0,
493 uint8_t p1, uint8_t p2, uint8_t p3)
494{
495
496 uint8_t* buf = (uint8_t*)urb->transfer_buffer + urb->transfer_buffer_length;
497 buf[0] = p1;
498 buf[1] = p2;
499 buf[2] = p3;
500 buf[3] = (p0 & 0xf0) | snd_usbmidi_cin_length[p0 & 0x0f];
501 urb->transfer_buffer_length += 4;
502}
503
504/*
505 * Converts MIDI commands to USB MIDI packets.
506 */
86e07d34 507static void snd_usbmidi_transmit_byte(struct usbmidi_out_port* port,
1da177e4
LT
508 uint8_t b, struct urb* urb)
509{
510 uint8_t p0 = port->cable;
511 void (*output_packet)(struct urb*, uint8_t, uint8_t, uint8_t, uint8_t) =
512 port->ep->umidi->usb_protocol_ops->output_packet;
513
514 if (b >= 0xf8) {
515 output_packet(urb, p0 | 0x0f, b, 0, 0);
516 } else if (b >= 0xf0) {
517 switch (b) {
518 case 0xf0:
519 port->data[0] = b;
520 port->state = STATE_SYSEX_1;
521 break;
522 case 0xf1:
523 case 0xf3:
524 port->data[0] = b;
525 port->state = STATE_1PARAM;
526 break;
527 case 0xf2:
528 port->data[0] = b;
529 port->state = STATE_2PARAM_1;
530 break;
531 case 0xf4:
532 case 0xf5:
533 port->state = STATE_UNKNOWN;
534 break;
535 case 0xf6:
536 output_packet(urb, p0 | 0x05, 0xf6, 0, 0);
537 port->state = STATE_UNKNOWN;
538 break;
539 case 0xf7:
540 switch (port->state) {
541 case STATE_SYSEX_0:
542 output_packet(urb, p0 | 0x05, 0xf7, 0, 0);
543 break;
544 case STATE_SYSEX_1:
545 output_packet(urb, p0 | 0x06, port->data[0], 0xf7, 0);
546 break;
547 case STATE_SYSEX_2:
548 output_packet(urb, p0 | 0x07, port->data[0], port->data[1], 0xf7);
549 break;
550 }
551 port->state = STATE_UNKNOWN;
552 break;
553 }
554 } else if (b >= 0x80) {
555 port->data[0] = b;
556 if (b >= 0xc0 && b <= 0xdf)
557 port->state = STATE_1PARAM;
558 else
559 port->state = STATE_2PARAM_1;
560 } else { /* b < 0x80 */
561 switch (port->state) {
562 case STATE_1PARAM:
563 if (port->data[0] < 0xf0) {
564 p0 |= port->data[0] >> 4;
565 } else {
566 p0 |= 0x02;
567 port->state = STATE_UNKNOWN;
568 }
569 output_packet(urb, p0, port->data[0], b, 0);
570 break;
571 case STATE_2PARAM_1:
572 port->data[1] = b;
573 port->state = STATE_2PARAM_2;
574 break;
575 case STATE_2PARAM_2:
576 if (port->data[0] < 0xf0) {
577 p0 |= port->data[0] >> 4;
578 port->state = STATE_2PARAM_1;
579 } else {
580 p0 |= 0x03;
581 port->state = STATE_UNKNOWN;
582 }
583 output_packet(urb, p0, port->data[0], port->data[1], b);
584 break;
585 case STATE_SYSEX_0:
586 port->data[0] = b;
587 port->state = STATE_SYSEX_1;
588 break;
589 case STATE_SYSEX_1:
590 port->data[1] = b;
591 port->state = STATE_SYSEX_2;
592 break;
593 case STATE_SYSEX_2:
594 output_packet(urb, p0 | 0x04, port->data[0], port->data[1], b);
595 port->state = STATE_SYSEX_0;
596 break;
597 }
598 }
599}
600
ed4affa5
CL
601static void snd_usbmidi_standard_output(struct snd_usb_midi_out_endpoint* ep,
602 struct urb *urb)
1da177e4 603{
1da177e4
LT
604 int p;
605
606 /* FIXME: lower-numbered ports can starve higher-numbered ports */
607 for (p = 0; p < 0x10; ++p) {
86e07d34 608 struct usbmidi_out_port* port = &ep->ports[p];
1da177e4
LT
609 if (!port->active)
610 continue;
611 while (urb->transfer_buffer_length + 3 < ep->max_transfer) {
612 uint8_t b;
613 if (snd_rawmidi_transmit(port->substream, &b, 1) != 1) {
614 port->active = 0;
615 break;
616 }
617 snd_usbmidi_transmit_byte(port, b, urb);
618 }
619 }
620}
621
622static struct usb_protocol_ops snd_usbmidi_standard_ops = {
623 .input = snd_usbmidi_standard_input,
624 .output = snd_usbmidi_standard_output,
625 .output_packet = snd_usbmidi_output_standard_packet,
626};
627
628static struct usb_protocol_ops snd_usbmidi_midiman_ops = {
629 .input = snd_usbmidi_midiman_input,
630 .output = snd_usbmidi_standard_output,
631 .output_packet = snd_usbmidi_output_midiman_packet,
632};
633
d05cc104
CL
634static struct usb_protocol_ops snd_usbmidi_maudio_broken_running_status_ops = {
635 .input = snd_usbmidi_maudio_broken_running_status_input,
636 .output = snd_usbmidi_standard_output,
637 .output_packet = snd_usbmidi_output_standard_packet,
638};
639
61870aed
CL
640static struct usb_protocol_ops snd_usbmidi_cme_ops = {
641 .input = snd_usbmidi_cme_input,
642 .output = snd_usbmidi_standard_output,
643 .output_packet = snd_usbmidi_output_standard_packet,
644};
645
1da177e4
LT
646/*
647 * Novation USB MIDI protocol: number of data bytes is in the first byte
648 * (when receiving) (+1!) or in the second byte (when sending); data begins
649 * at the third byte.
650 */
651
86e07d34 652static void snd_usbmidi_novation_input(struct snd_usb_midi_in_endpoint* ep,
1da177e4
LT
653 uint8_t* buffer, int buffer_length)
654{
655 if (buffer_length < 2 || !buffer[0] || buffer_length < buffer[0] + 1)
656 return;
657 snd_usbmidi_input_data(ep, 0, &buffer[2], buffer[0] - 1);
658}
659
ed4affa5
CL
660static void snd_usbmidi_novation_output(struct snd_usb_midi_out_endpoint* ep,
661 struct urb *urb)
1da177e4
LT
662{
663 uint8_t* transfer_buffer;
664 int count;
665
666 if (!ep->ports[0].active)
667 return;
ed4affa5 668 transfer_buffer = urb->transfer_buffer;
1da177e4
LT
669 count = snd_rawmidi_transmit(ep->ports[0].substream,
670 &transfer_buffer[2],
671 ep->max_transfer - 2);
672 if (count < 1) {
673 ep->ports[0].active = 0;
674 return;
675 }
676 transfer_buffer[0] = 0;
677 transfer_buffer[1] = count;
ed4affa5 678 urb->transfer_buffer_length = 2 + count;
1da177e4
LT
679}
680
681static struct usb_protocol_ops snd_usbmidi_novation_ops = {
682 .input = snd_usbmidi_novation_input,
683 .output = snd_usbmidi_novation_output,
684};
685
686/*
6155aff8 687 * "raw" protocol: used by the MOTU FastLane.
1da177e4
LT
688 */
689
86e07d34 690static void snd_usbmidi_raw_input(struct snd_usb_midi_in_endpoint* ep,
6155aff8 691 uint8_t* buffer, int buffer_length)
1da177e4
LT
692{
693 snd_usbmidi_input_data(ep, 0, buffer, buffer_length);
694}
695
ed4affa5
CL
696static void snd_usbmidi_raw_output(struct snd_usb_midi_out_endpoint* ep,
697 struct urb *urb)
1da177e4
LT
698{
699 int count;
700
701 if (!ep->ports[0].active)
702 return;
703 count = snd_rawmidi_transmit(ep->ports[0].substream,
ed4affa5 704 urb->transfer_buffer,
1da177e4
LT
705 ep->max_transfer);
706 if (count < 1) {
707 ep->ports[0].active = 0;
708 return;
709 }
ed4affa5 710 urb->transfer_buffer_length = count;
1da177e4
LT
711}
712
6155aff8
CL
713static struct usb_protocol_ops snd_usbmidi_raw_ops = {
714 .input = snd_usbmidi_raw_input,
715 .output = snd_usbmidi_raw_output,
1da177e4
LT
716};
717
030a07e4
KW
718static void snd_usbmidi_us122l_input(struct snd_usb_midi_in_endpoint *ep,
719 uint8_t *buffer, int buffer_length)
720{
721 if (buffer_length != 9)
722 return;
723 buffer_length = 8;
724 while (buffer_length && buffer[buffer_length - 1] == 0xFD)
725 buffer_length--;
726 if (buffer_length)
727 snd_usbmidi_input_data(ep, 0, buffer, buffer_length);
728}
729
ed4affa5
CL
730static void snd_usbmidi_us122l_output(struct snd_usb_midi_out_endpoint *ep,
731 struct urb *urb)
030a07e4
KW
732{
733 int count;
734
735 if (!ep->ports[0].active)
736 return;
d82af9f9 737 count = snd_usb_get_speed(ep->umidi->dev) == USB_SPEED_HIGH ? 1 : 2;
030a07e4 738 count = snd_rawmidi_transmit(ep->ports[0].substream,
ed4affa5 739 urb->transfer_buffer,
030a07e4
KW
740 count);
741 if (count < 1) {
742 ep->ports[0].active = 0;
743 return;
744 }
745
ed4affa5
CL
746 memset(urb->transfer_buffer + count, 0xFD, 9 - count);
747 urb->transfer_buffer_length = count;
030a07e4
KW
748}
749
750static struct usb_protocol_ops snd_usbmidi_122l_ops = {
751 .input = snd_usbmidi_us122l_input,
752 .output = snd_usbmidi_us122l_output,
753};
754
1da177e4
LT
755/*
756 * Emagic USB MIDI protocol: raw MIDI with "F5 xx" port switching.
757 */
758
86e07d34 759static void snd_usbmidi_emagic_init_out(struct snd_usb_midi_out_endpoint* ep)
1da177e4
LT
760{
761 static const u8 init_data[] = {
762 /* initialization magic: "get version" */
763 0xf0,
764 0x00, 0x20, 0x31, /* Emagic */
765 0x64, /* Unitor8 */
766 0x0b, /* version number request */
767 0x00, /* command version */
768 0x00, /* EEPROM, box 0 */
769 0xf7
770 };
771 send_bulk_static_data(ep, init_data, sizeof(init_data));
772 /* while we're at it, pour on more magic */
773 send_bulk_static_data(ep, init_data, sizeof(init_data));
774}
775
86e07d34 776static void snd_usbmidi_emagic_finish_out(struct snd_usb_midi_out_endpoint* ep)
1da177e4
LT
777{
778 static const u8 finish_data[] = {
779 /* switch to patch mode with last preset */
780 0xf0,
781 0x00, 0x20, 0x31, /* Emagic */
782 0x64, /* Unitor8 */
783 0x10, /* patch switch command */
784 0x00, /* command version */
785 0x7f, /* to all boxes */
786 0x40, /* last preset in EEPROM */
787 0xf7
788 };
789 send_bulk_static_data(ep, finish_data, sizeof(finish_data));
790}
791
86e07d34 792static void snd_usbmidi_emagic_input(struct snd_usb_midi_in_endpoint* ep,
1da177e4
LT
793 uint8_t* buffer, int buffer_length)
794{
c347e9fc
CL
795 int i;
796
797 /* FF indicates end of valid data */
798 for (i = 0; i < buffer_length; ++i)
799 if (buffer[i] == 0xff) {
800 buffer_length = i;
801 break;
802 }
1da177e4
LT
803
804 /* handle F5 at end of last buffer */
805 if (ep->seen_f5)
806 goto switch_port;
807
808 while (buffer_length > 0) {
1da177e4
LT
809 /* determine size of data until next F5 */
810 for (i = 0; i < buffer_length; ++i)
811 if (buffer[i] == 0xf5)
812 break;
813 snd_usbmidi_input_data(ep, ep->current_port, buffer, i);
814 buffer += i;
815 buffer_length -= i;
816
817 if (buffer_length <= 0)
818 break;
819 /* assert(buffer[0] == 0xf5); */
820 ep->seen_f5 = 1;
821 ++buffer;
822 --buffer_length;
823
824 switch_port:
825 if (buffer_length <= 0)
826 break;
827 if (buffer[0] < 0x80) {
828 ep->current_port = (buffer[0] - 1) & 15;
829 ++buffer;
830 --buffer_length;
831 }
832 ep->seen_f5 = 0;
833 }
834}
835
ed4affa5
CL
836static void snd_usbmidi_emagic_output(struct snd_usb_midi_out_endpoint* ep,
837 struct urb *urb)
1da177e4
LT
838{
839 int port0 = ep->current_port;
ed4affa5 840 uint8_t* buf = urb->transfer_buffer;
1da177e4
LT
841 int buf_free = ep->max_transfer;
842 int length, i;
843
844 for (i = 0; i < 0x10; ++i) {
845 /* round-robin, starting at the last current port */
846 int portnum = (port0 + i) & 15;
86e07d34 847 struct usbmidi_out_port* port = &ep->ports[portnum];
1da177e4
LT
848
849 if (!port->active)
850 continue;
851 if (snd_rawmidi_transmit_peek(port->substream, buf, 1) != 1) {
852 port->active = 0;
853 continue;
854 }
855
856 if (portnum != ep->current_port) {
857 if (buf_free < 2)
858 break;
859 ep->current_port = portnum;
860 buf[0] = 0xf5;
861 buf[1] = (portnum + 1) & 15;
862 buf += 2;
863 buf_free -= 2;
864 }
865
866 if (buf_free < 1)
867 break;
868 length = snd_rawmidi_transmit(port->substream, buf, buf_free);
869 if (length > 0) {
870 buf += length;
871 buf_free -= length;
872 if (buf_free < 1)
873 break;
874 }
875 }
c347e9fc
CL
876 if (buf_free < ep->max_transfer && buf_free > 0) {
877 *buf = 0xff;
878 --buf_free;
879 }
ed4affa5 880 urb->transfer_buffer_length = ep->max_transfer - buf_free;
1da177e4
LT
881}
882
883static struct usb_protocol_ops snd_usbmidi_emagic_ops = {
884 .input = snd_usbmidi_emagic_input,
885 .output = snd_usbmidi_emagic_output,
886 .init_out_endpoint = snd_usbmidi_emagic_init_out,
887 .finish_out_endpoint = snd_usbmidi_emagic_finish_out,
888};
889
890
96f61d9a
CL
891static void update_roland_altsetting(struct snd_usb_midi* umidi)
892{
893 struct usb_interface *intf;
894 struct usb_host_interface *hostif;
895 struct usb_interface_descriptor *intfd;
896 int is_light_load;
897
898 intf = umidi->iface;
899 is_light_load = intf->cur_altsetting != intf->altsetting;
900 if (umidi->roland_load_ctl->private_value == is_light_load)
901 return;
902 hostif = &intf->altsetting[umidi->roland_load_ctl->private_value];
903 intfd = get_iface_desc(hostif);
904 snd_usbmidi_input_stop(&umidi->list);
d82af9f9 905 usb_set_interface(umidi->dev, intfd->bInterfaceNumber,
96f61d9a
CL
906 intfd->bAlternateSetting);
907 snd_usbmidi_input_start(&umidi->list);
908}
909
910static void substream_open(struct snd_rawmidi_substream *substream, int open)
911{
912 struct snd_usb_midi* umidi = substream->rmidi->private_data;
913 struct snd_kcontrol *ctl;
914
915 mutex_lock(&umidi->mutex);
916 if (open) {
917 if (umidi->opened++ == 0 && umidi->roland_load_ctl) {
918 ctl = umidi->roland_load_ctl;
919 ctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
d82af9f9 920 snd_ctl_notify(umidi->card,
96f61d9a
CL
921 SNDRV_CTL_EVENT_MASK_INFO, &ctl->id);
922 update_roland_altsetting(umidi);
923 }
924 } else {
925 if (--umidi->opened == 0 && umidi->roland_load_ctl) {
926 ctl = umidi->roland_load_ctl;
927 ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
d82af9f9 928 snd_ctl_notify(umidi->card,
96f61d9a
CL
929 SNDRV_CTL_EVENT_MASK_INFO, &ctl->id);
930 }
931 }
932 mutex_unlock(&umidi->mutex);
933}
934
86e07d34 935static int snd_usbmidi_output_open(struct snd_rawmidi_substream *substream)
1da177e4 936{
86e07d34
TI
937 struct snd_usb_midi* umidi = substream->rmidi->private_data;
938 struct usbmidi_out_port* port = NULL;
1da177e4
LT
939 int i, j;
940
941 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i)
942 if (umidi->endpoints[i].out)
943 for (j = 0; j < 0x10; ++j)
944 if (umidi->endpoints[i].out->ports[j].substream == substream) {
945 port = &umidi->endpoints[i].out->ports[j];
946 break;
947 }
948 if (!port) {
949 snd_BUG();
950 return -ENXIO;
951 }
952 substream->runtime->private_data = port;
953 port->state = STATE_UNKNOWN;
96f61d9a 954 substream_open(substream, 1);
1da177e4
LT
955 return 0;
956}
957
86e07d34 958static int snd_usbmidi_output_close(struct snd_rawmidi_substream *substream)
1da177e4 959{
96f61d9a 960 substream_open(substream, 0);
1da177e4
LT
961 return 0;
962}
963
86e07d34 964static void snd_usbmidi_output_trigger(struct snd_rawmidi_substream *substream, int up)
1da177e4 965{
86e07d34 966 struct usbmidi_out_port* port = (struct usbmidi_out_port*)substream->runtime->private_data;
1da177e4
LT
967
968 port->active = up;
969 if (up) {
d82af9f9 970 if (port->ep->umidi->disconnected) {
1da177e4
LT
971 /* gobble up remaining bytes to prevent wait in
972 * snd_rawmidi_drain_output */
973 while (!snd_rawmidi_transmit_empty(substream))
974 snd_rawmidi_transmit_ack(substream, 1);
975 return;
976 }
1f04128a 977 tasklet_schedule(&port->ep->tasklet);
1da177e4
LT
978 }
979}
980
a65dd997
CL
981static void snd_usbmidi_output_drain(struct snd_rawmidi_substream *substream)
982{
983 struct usbmidi_out_port* port = substream->runtime->private_data;
984 struct snd_usb_midi_out_endpoint *ep = port->ep;
985 unsigned int drain_urbs;
986 DEFINE_WAIT(wait);
987 long timeout = msecs_to_jiffies(50);
988
989 /*
990 * The substream buffer is empty, but some data might still be in the
991 * currently active URBs, so we have to wait for those to complete.
992 */
993 spin_lock_irq(&ep->buffer_lock);
994 drain_urbs = ep->active_urbs;
995 if (drain_urbs) {
996 ep->drain_urbs |= drain_urbs;
997 do {
998 prepare_to_wait(&ep->drain_wait, &wait,
999 TASK_UNINTERRUPTIBLE);
1000 spin_unlock_irq(&ep->buffer_lock);
1001 timeout = schedule_timeout(timeout);
1002 spin_lock_irq(&ep->buffer_lock);
1003 drain_urbs &= ep->drain_urbs;
1004 } while (drain_urbs && timeout);
1005 finish_wait(&ep->drain_wait, &wait);
1006 }
1007 spin_unlock_irq(&ep->buffer_lock);
1008}
1009
86e07d34 1010static int snd_usbmidi_input_open(struct snd_rawmidi_substream *substream)
1da177e4 1011{
96f61d9a 1012 substream_open(substream, 1);
1da177e4
LT
1013 return 0;
1014}
1015
86e07d34 1016static int snd_usbmidi_input_close(struct snd_rawmidi_substream *substream)
1da177e4 1017{
96f61d9a 1018 substream_open(substream, 0);
1da177e4
LT
1019 return 0;
1020}
1021
86e07d34 1022static void snd_usbmidi_input_trigger(struct snd_rawmidi_substream *substream, int up)
1da177e4 1023{
86e07d34 1024 struct snd_usb_midi* umidi = substream->rmidi->private_data;
1da177e4
LT
1025
1026 if (up)
1027 set_bit(substream->number, &umidi->input_triggered);
1028 else
1029 clear_bit(substream->number, &umidi->input_triggered);
1030}
1031
86e07d34 1032static struct snd_rawmidi_ops snd_usbmidi_output_ops = {
1da177e4
LT
1033 .open = snd_usbmidi_output_open,
1034 .close = snd_usbmidi_output_close,
1035 .trigger = snd_usbmidi_output_trigger,
a65dd997 1036 .drain = snd_usbmidi_output_drain,
1da177e4
LT
1037};
1038
86e07d34 1039static struct snd_rawmidi_ops snd_usbmidi_input_ops = {
1da177e4
LT
1040 .open = snd_usbmidi_input_open,
1041 .close = snd_usbmidi_input_close,
1042 .trigger = snd_usbmidi_input_trigger
1043};
1044
ed4affa5
CL
1045static void free_urb_and_buffer(struct snd_usb_midi *umidi, struct urb *urb,
1046 unsigned int buffer_length)
1047{
d82af9f9 1048 usb_buffer_free(umidi->dev, buffer_length,
ed4affa5
CL
1049 urb->transfer_buffer, urb->transfer_dma);
1050 usb_free_urb(urb);
1051}
1052
1da177e4
LT
1053/*
1054 * Frees an input endpoint.
1055 * May be called when ep hasn't been initialized completely.
1056 */
86e07d34 1057static void snd_usbmidi_in_endpoint_delete(struct snd_usb_midi_in_endpoint* ep)
1da177e4 1058{
4773d1fb
CL
1059 unsigned int i;
1060
ed4affa5
CL
1061 for (i = 0; i < INPUT_URBS; ++i)
1062 if (ep->urbs[i])
1063 free_urb_and_buffer(ep->umidi, ep->urbs[i],
1064 ep->urbs[i]->transfer_buffer_length);
1da177e4
LT
1065 kfree(ep);
1066}
1067
1068/*
1069 * Creates an input endpoint.
1070 */
86e07d34
TI
1071static int snd_usbmidi_in_endpoint_create(struct snd_usb_midi* umidi,
1072 struct snd_usb_midi_endpoint_info* ep_info,
1073 struct snd_usb_midi_endpoint* rep)
1da177e4 1074{
86e07d34 1075 struct snd_usb_midi_in_endpoint* ep;
1da177e4
LT
1076 void* buffer;
1077 unsigned int pipe;
1078 int length;
4773d1fb 1079 unsigned int i;
1da177e4
LT
1080
1081 rep->in = NULL;
561b220a 1082 ep = kzalloc(sizeof(*ep), GFP_KERNEL);
1da177e4
LT
1083 if (!ep)
1084 return -ENOMEM;
1085 ep->umidi = umidi;
1086
4773d1fb
CL
1087 for (i = 0; i < INPUT_URBS; ++i) {
1088 ep->urbs[i] = usb_alloc_urb(0, GFP_KERNEL);
1089 if (!ep->urbs[i]) {
1090 snd_usbmidi_in_endpoint_delete(ep);
1091 return -ENOMEM;
1092 }
1da177e4
LT
1093 }
1094 if (ep_info->in_interval)
d82af9f9 1095 pipe = usb_rcvintpipe(umidi->dev, ep_info->in_ep);
1da177e4 1096 else
d82af9f9
CL
1097 pipe = usb_rcvbulkpipe(umidi->dev, ep_info->in_ep);
1098 length = usb_maxpacket(umidi->dev, pipe, 0);
4773d1fb 1099 for (i = 0; i < INPUT_URBS; ++i) {
d82af9f9 1100 buffer = usb_buffer_alloc(umidi->dev, length, GFP_KERNEL,
4773d1fb
CL
1101 &ep->urbs[i]->transfer_dma);
1102 if (!buffer) {
1103 snd_usbmidi_in_endpoint_delete(ep);
1104 return -ENOMEM;
1105 }
1106 if (ep_info->in_interval)
d82af9f9 1107 usb_fill_int_urb(ep->urbs[i], umidi->dev,
4773d1fb
CL
1108 pipe, buffer, length,
1109 snd_usbmidi_in_urb_complete,
1110 ep, ep_info->in_interval);
1111 else
d82af9f9 1112 usb_fill_bulk_urb(ep->urbs[i], umidi->dev,
4773d1fb
CL
1113 pipe, buffer, length,
1114 snd_usbmidi_in_urb_complete, ep);
1115 ep->urbs[i]->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
1da177e4 1116 }
1da177e4
LT
1117
1118 rep->in = ep;
1119 return 0;
1120}
1121
1da177e4
LT
1122/*
1123 * Frees an output endpoint.
1124 * May be called when ep hasn't been initialized completely.
1125 */
86e07d34 1126static void snd_usbmidi_out_endpoint_delete(struct snd_usb_midi_out_endpoint* ep)
1da177e4 1127{
ed4affa5
CL
1128 unsigned int i;
1129
1130 for (i = 0; i < OUTPUT_URBS; ++i)
1131 if (ep->urbs[i].urb)
1132 free_urb_and_buffer(ep->umidi, ep->urbs[i].urb,
1133 ep->max_transfer);
1da177e4
LT
1134 kfree(ep);
1135}
1136
1137/*
1138 * Creates an output endpoint, and initializes output ports.
1139 */
86e07d34
TI
1140static int snd_usbmidi_out_endpoint_create(struct snd_usb_midi* umidi,
1141 struct snd_usb_midi_endpoint_info* ep_info,
1142 struct snd_usb_midi_endpoint* rep)
1da177e4 1143{
86e07d34 1144 struct snd_usb_midi_out_endpoint* ep;
ed4affa5 1145 unsigned int i;
1da177e4
LT
1146 unsigned int pipe;
1147 void* buffer;
1148
1149 rep->out = NULL;
561b220a 1150 ep = kzalloc(sizeof(*ep), GFP_KERNEL);
1da177e4
LT
1151 if (!ep)
1152 return -ENOMEM;
1153 ep->umidi = umidi;
1154
ed4affa5
CL
1155 for (i = 0; i < OUTPUT_URBS; ++i) {
1156 ep->urbs[i].urb = usb_alloc_urb(0, GFP_KERNEL);
1157 if (!ep->urbs[i].urb) {
1158 snd_usbmidi_out_endpoint_delete(ep);
1159 return -ENOMEM;
1160 }
1161 ep->urbs[i].ep = ep;
1da177e4 1162 }
a6a712ae 1163 if (ep_info->out_interval)
d82af9f9 1164 pipe = usb_sndintpipe(umidi->dev, ep_info->out_ep);
a6a712ae 1165 else
d82af9f9 1166 pipe = usb_sndbulkpipe(umidi->dev, ep_info->out_ep);
f167e1d0
CL
1167 switch (umidi->usb_id) {
1168 default:
d82af9f9 1169 ep->max_transfer = usb_maxpacket(umidi->dev, pipe, 1);
f167e1d0
CL
1170 break;
1171 /*
1172 * Various chips declare a packet size larger than 4 bytes, but
1173 * do not actually work with larger packets:
1174 */
1175 case USB_ID(0x0a92, 0x1020): /* ESI M4U */
1176 case USB_ID(0x1430, 0x474b): /* RedOctane GH MIDI INTERFACE */
1177 case USB_ID(0x15ca, 0x0101): /* Textech USB Midi Cable */
1178 case USB_ID(0x15ca, 0x1806): /* Textech USB Midi Cable */
1179 case USB_ID(0x1a86, 0x752d): /* QinHeng CH345 "USB2.0-MIDI" */
1180 ep->max_transfer = 4;
1181 break;
1182 }
ed4affa5 1183 for (i = 0; i < OUTPUT_URBS; ++i) {
d82af9f9 1184 buffer = usb_buffer_alloc(umidi->dev,
ed4affa5
CL
1185 ep->max_transfer, GFP_KERNEL,
1186 &ep->urbs[i].urb->transfer_dma);
1187 if (!buffer) {
1188 snd_usbmidi_out_endpoint_delete(ep);
1189 return -ENOMEM;
1190 }
1191 if (ep_info->out_interval)
d82af9f9 1192 usb_fill_int_urb(ep->urbs[i].urb, umidi->dev,
ed4affa5
CL
1193 pipe, buffer, ep->max_transfer,
1194 snd_usbmidi_out_urb_complete,
1195 &ep->urbs[i], ep_info->out_interval);
1196 else
d82af9f9 1197 usb_fill_bulk_urb(ep->urbs[i].urb, umidi->dev,
ed4affa5
CL
1198 pipe, buffer, ep->max_transfer,
1199 snd_usbmidi_out_urb_complete,
1200 &ep->urbs[i]);
1201 ep->urbs[i].urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
1da177e4 1202 }
1da177e4
LT
1203
1204 spin_lock_init(&ep->buffer_lock);
1205 tasklet_init(&ep->tasklet, snd_usbmidi_out_tasklet, (unsigned long)ep);
a65dd997 1206 init_waitqueue_head(&ep->drain_wait);
1da177e4
LT
1207
1208 for (i = 0; i < 0x10; ++i)
1209 if (ep_info->out_cables & (1 << i)) {
1210 ep->ports[i].ep = ep;
1211 ep->ports[i].cable = i << 4;
1212 }
1213
1214 if (umidi->usb_protocol_ops->init_out_endpoint)
1215 umidi->usb_protocol_ops->init_out_endpoint(ep);
1216
1217 rep->out = ep;
1218 return 0;
1219}
1220
1221/*
1222 * Frees everything.
1223 */
86e07d34 1224static void snd_usbmidi_free(struct snd_usb_midi* umidi)
1da177e4
LT
1225{
1226 int i;
1227
1228 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
86e07d34 1229 struct snd_usb_midi_endpoint* ep = &umidi->endpoints[i];
1da177e4
LT
1230 if (ep->out)
1231 snd_usbmidi_out_endpoint_delete(ep->out);
1232 if (ep->in)
1233 snd_usbmidi_in_endpoint_delete(ep->in);
1234 }
96f61d9a 1235 mutex_destroy(&umidi->mutex);
1da177e4
LT
1236 kfree(umidi);
1237}
1238
1239/*
1240 * Unlinks all URBs (must be done before the usb_device is deleted).
1241 */
ee733397 1242void snd_usbmidi_disconnect(struct list_head* p)
1da177e4 1243{
86e07d34 1244 struct snd_usb_midi* umidi;
4773d1fb 1245 unsigned int i, j;
1da177e4 1246
86e07d34 1247 umidi = list_entry(p, struct snd_usb_midi, list);
c0792e00
TI
1248 /*
1249 * an URB's completion handler may start the timer and
1250 * a timer may submit an URB. To reliably break the cycle
1251 * a flag under lock must be used
1252 */
1253 spin_lock_irq(&umidi->disc_lock);
1254 umidi->disconnected = 1;
1255 spin_unlock_irq(&umidi->disc_lock);
1da177e4 1256 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
86e07d34 1257 struct snd_usb_midi_endpoint* ep = &umidi->endpoints[i];
c8846970
CL
1258 if (ep->out)
1259 tasklet_kill(&ep->out->tasklet);
ed4affa5
CL
1260 if (ep->out) {
1261 for (j = 0; j < OUTPUT_URBS; ++j)
1262 usb_kill_urb(ep->out->urbs[j].urb);
1da177e4
LT
1263 if (umidi->usb_protocol_ops->finish_out_endpoint)
1264 umidi->usb_protocol_ops->finish_out_endpoint(ep->out);
1265 }
f5e135af 1266 if (ep->in)
4773d1fb
CL
1267 for (j = 0; j < INPUT_URBS; ++j)
1268 usb_kill_urb(ep->in->urbs[j]);
7a17daae
TI
1269 /* free endpoints here; later call can result in Oops */
1270 if (ep->out) {
1271 snd_usbmidi_out_endpoint_delete(ep->out);
1272 ep->out = NULL;
1273 }
1274 if (ep->in) {
1275 snd_usbmidi_in_endpoint_delete(ep->in);
1276 ep->in = NULL;
1277 }
1da177e4 1278 }
c0792e00 1279 del_timer_sync(&umidi->error_timer);
1da177e4
LT
1280}
1281
86e07d34 1282static void snd_usbmidi_rawmidi_free(struct snd_rawmidi *rmidi)
1da177e4 1283{
86e07d34 1284 struct snd_usb_midi* umidi = rmidi->private_data;
1da177e4
LT
1285 snd_usbmidi_free(umidi);
1286}
1287
86e07d34 1288static struct snd_rawmidi_substream *snd_usbmidi_find_substream(struct snd_usb_midi* umidi,
1da177e4
LT
1289 int stream, int number)
1290{
1291 struct list_head* list;
1292
1293 list_for_each(list, &umidi->rmidi->streams[stream].substreams) {
86e07d34 1294 struct snd_rawmidi_substream *substream = list_entry(list, struct snd_rawmidi_substream, list);
1da177e4
LT
1295 if (substream->number == number)
1296 return substream;
1297 }
1298 return NULL;
1299}
1300
1301/*
1302 * This list specifies names for ports that do not fit into the standard
1303 * "(product) MIDI (n)" schema because they aren't external MIDI ports,
1304 * such as internal control or synthesizer ports.
1305 */
a7b928ac 1306static struct port_info {
27d10f56 1307 u32 id;
a7b928ac
CL
1308 short int port;
1309 short int voices;
1310 const char *name;
1311 unsigned int seq_flags;
1312} snd_usbmidi_port_info[] = {
1313#define PORT_INFO(vendor, product, num, name_, voices_, flags) \
1314 { .id = USB_ID(vendor, product), \
1315 .port = num, .voices = voices_, \
1316 .name = name_, .seq_flags = flags }
1317#define EXTERNAL_PORT(vendor, product, num, name) \
1318 PORT_INFO(vendor, product, num, name, 0, \
1319 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC | \
1320 SNDRV_SEQ_PORT_TYPE_HARDWARE | \
1321 SNDRV_SEQ_PORT_TYPE_PORT)
1322#define CONTROL_PORT(vendor, product, num, name) \
1323 PORT_INFO(vendor, product, num, name, 0, \
1324 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC | \
1325 SNDRV_SEQ_PORT_TYPE_HARDWARE)
1326#define ROLAND_SYNTH_PORT(vendor, product, num, name, voices) \
1327 PORT_INFO(vendor, product, num, name, voices, \
1328 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC | \
1329 SNDRV_SEQ_PORT_TYPE_MIDI_GM | \
1330 SNDRV_SEQ_PORT_TYPE_MIDI_GM2 | \
1331 SNDRV_SEQ_PORT_TYPE_MIDI_GS | \
1332 SNDRV_SEQ_PORT_TYPE_MIDI_XG | \
1333 SNDRV_SEQ_PORT_TYPE_HARDWARE | \
1334 SNDRV_SEQ_PORT_TYPE_SYNTHESIZER)
1335#define SOUNDCANVAS_PORT(vendor, product, num, name, voices) \
1336 PORT_INFO(vendor, product, num, name, voices, \
1337 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC | \
1338 SNDRV_SEQ_PORT_TYPE_MIDI_GM | \
1339 SNDRV_SEQ_PORT_TYPE_MIDI_GM2 | \
1340 SNDRV_SEQ_PORT_TYPE_MIDI_GS | \
1341 SNDRV_SEQ_PORT_TYPE_MIDI_XG | \
1342 SNDRV_SEQ_PORT_TYPE_MIDI_MT32 | \
1343 SNDRV_SEQ_PORT_TYPE_HARDWARE | \
1344 SNDRV_SEQ_PORT_TYPE_SYNTHESIZER)
1da177e4 1345 /* Roland UA-100 */
a7b928ac 1346 CONTROL_PORT(0x0582, 0x0000, 2, "%s Control"),
1da177e4 1347 /* Roland SC-8850 */
a7b928ac
CL
1348 SOUNDCANVAS_PORT(0x0582, 0x0003, 0, "%s Part A", 128),
1349 SOUNDCANVAS_PORT(0x0582, 0x0003, 1, "%s Part B", 128),
1350 SOUNDCANVAS_PORT(0x0582, 0x0003, 2, "%s Part C", 128),
1351 SOUNDCANVAS_PORT(0x0582, 0x0003, 3, "%s Part D", 128),
1352 EXTERNAL_PORT(0x0582, 0x0003, 4, "%s MIDI 1"),
1353 EXTERNAL_PORT(0x0582, 0x0003, 5, "%s MIDI 2"),
1da177e4 1354 /* Roland U-8 */
a7b928ac
CL
1355 EXTERNAL_PORT(0x0582, 0x0004, 0, "%s MIDI"),
1356 CONTROL_PORT(0x0582, 0x0004, 1, "%s Control"),
1da177e4 1357 /* Roland SC-8820 */
a7b928ac
CL
1358 SOUNDCANVAS_PORT(0x0582, 0x0007, 0, "%s Part A", 64),
1359 SOUNDCANVAS_PORT(0x0582, 0x0007, 1, "%s Part B", 64),
1360 EXTERNAL_PORT(0x0582, 0x0007, 2, "%s MIDI"),
1da177e4 1361 /* Roland SK-500 */
a7b928ac
CL
1362 SOUNDCANVAS_PORT(0x0582, 0x000b, 0, "%s Part A", 64),
1363 SOUNDCANVAS_PORT(0x0582, 0x000b, 1, "%s Part B", 64),
1364 EXTERNAL_PORT(0x0582, 0x000b, 2, "%s MIDI"),
1da177e4 1365 /* Roland SC-D70 */
a7b928ac
CL
1366 SOUNDCANVAS_PORT(0x0582, 0x000c, 0, "%s Part A", 64),
1367 SOUNDCANVAS_PORT(0x0582, 0x000c, 1, "%s Part B", 64),
1368 EXTERNAL_PORT(0x0582, 0x000c, 2, "%s MIDI"),
1da177e4 1369 /* Edirol UM-880 */
a7b928ac 1370 CONTROL_PORT(0x0582, 0x0014, 8, "%s Control"),
1da177e4 1371 /* Edirol SD-90 */
a7b928ac
CL
1372 ROLAND_SYNTH_PORT(0x0582, 0x0016, 0, "%s Part A", 128),
1373 ROLAND_SYNTH_PORT(0x0582, 0x0016, 1, "%s Part B", 128),
1374 EXTERNAL_PORT(0x0582, 0x0016, 2, "%s MIDI 1"),
1375 EXTERNAL_PORT(0x0582, 0x0016, 3, "%s MIDI 2"),
1da177e4 1376 /* Edirol UM-550 */
a7b928ac 1377 CONTROL_PORT(0x0582, 0x0023, 5, "%s Control"),
1da177e4 1378 /* Edirol SD-20 */
a7b928ac
CL
1379 ROLAND_SYNTH_PORT(0x0582, 0x0027, 0, "%s Part A", 64),
1380 ROLAND_SYNTH_PORT(0x0582, 0x0027, 1, "%s Part B", 64),
1381 EXTERNAL_PORT(0x0582, 0x0027, 2, "%s MIDI"),
1da177e4 1382 /* Edirol SD-80 */
a7b928ac
CL
1383 ROLAND_SYNTH_PORT(0x0582, 0x0029, 0, "%s Part A", 128),
1384 ROLAND_SYNTH_PORT(0x0582, 0x0029, 1, "%s Part B", 128),
1385 EXTERNAL_PORT(0x0582, 0x0029, 2, "%s MIDI 1"),
1386 EXTERNAL_PORT(0x0582, 0x0029, 3, "%s MIDI 2"),
1da177e4 1387 /* Edirol UA-700 */
a7b928ac
CL
1388 EXTERNAL_PORT(0x0582, 0x002b, 0, "%s MIDI"),
1389 CONTROL_PORT(0x0582, 0x002b, 1, "%s Control"),
1da177e4 1390 /* Roland VariOS */
a7b928ac
CL
1391 EXTERNAL_PORT(0x0582, 0x002f, 0, "%s MIDI"),
1392 EXTERNAL_PORT(0x0582, 0x002f, 1, "%s External MIDI"),
1393 EXTERNAL_PORT(0x0582, 0x002f, 2, "%s Sync"),
1da177e4 1394 /* Edirol PCR */
a7b928ac
CL
1395 EXTERNAL_PORT(0x0582, 0x0033, 0, "%s MIDI"),
1396 EXTERNAL_PORT(0x0582, 0x0033, 1, "%s 1"),
1397 EXTERNAL_PORT(0x0582, 0x0033, 2, "%s 2"),
1da177e4 1398 /* BOSS GS-10 */
a7b928ac
CL
1399 EXTERNAL_PORT(0x0582, 0x003b, 0, "%s MIDI"),
1400 CONTROL_PORT(0x0582, 0x003b, 1, "%s Control"),
1da177e4 1401 /* Edirol UA-1000 */
a7b928ac
CL
1402 EXTERNAL_PORT(0x0582, 0x0044, 0, "%s MIDI"),
1403 CONTROL_PORT(0x0582, 0x0044, 1, "%s Control"),
1da177e4 1404 /* Edirol UR-80 */
a7b928ac
CL
1405 EXTERNAL_PORT(0x0582, 0x0048, 0, "%s MIDI"),
1406 EXTERNAL_PORT(0x0582, 0x0048, 1, "%s 1"),
1407 EXTERNAL_PORT(0x0582, 0x0048, 2, "%s 2"),
1da177e4 1408 /* Edirol PCR-A */
a7b928ac
CL
1409 EXTERNAL_PORT(0x0582, 0x004d, 0, "%s MIDI"),
1410 EXTERNAL_PORT(0x0582, 0x004d, 1, "%s 1"),
1411 EXTERNAL_PORT(0x0582, 0x004d, 2, "%s 2"),
7c79b768 1412 /* Edirol UM-3EX */
a7b928ac 1413 CONTROL_PORT(0x0582, 0x009a, 3, "%s Control"),
1da177e4 1414 /* M-Audio MidiSport 8x8 */
a7b928ac
CL
1415 CONTROL_PORT(0x0763, 0x1031, 8, "%s Control"),
1416 CONTROL_PORT(0x0763, 0x1033, 8, "%s Control"),
1da177e4 1417 /* MOTU Fastlane */
a7b928ac
CL
1418 EXTERNAL_PORT(0x07fd, 0x0001, 0, "%s MIDI A"),
1419 EXTERNAL_PORT(0x07fd, 0x0001, 1, "%s MIDI B"),
1da177e4 1420 /* Emagic Unitor8/AMT8/MT4 */
a7b928ac
CL
1421 EXTERNAL_PORT(0x086a, 0x0001, 8, "%s Broadcast"),
1422 EXTERNAL_PORT(0x086a, 0x0002, 8, "%s Broadcast"),
1423 EXTERNAL_PORT(0x086a, 0x0003, 4, "%s Broadcast"),
d39e82db
SA
1424 /* Access Music Virus TI */
1425 EXTERNAL_PORT(0x133e, 0x0815, 0, "%s MIDI"),
1426 PORT_INFO(0x133e, 0x0815, 1, "%s Synth", 0,
1427 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC |
1428 SNDRV_SEQ_PORT_TYPE_HARDWARE |
1429 SNDRV_SEQ_PORT_TYPE_SYNTHESIZER),
1da177e4
LT
1430};
1431
a7b928ac
CL
1432static struct port_info *find_port_info(struct snd_usb_midi* umidi, int number)
1433{
1434 int i;
1435
1436 for (i = 0; i < ARRAY_SIZE(snd_usbmidi_port_info); ++i) {
d82af9f9 1437 if (snd_usbmidi_port_info[i].id == umidi->usb_id &&
a7b928ac
CL
1438 snd_usbmidi_port_info[i].port == number)
1439 return &snd_usbmidi_port_info[i];
1440 }
1441 return NULL;
1442}
1443
1444static void snd_usbmidi_get_port_info(struct snd_rawmidi *rmidi, int number,
1445 struct snd_seq_port_info *seq_port_info)
1446{
1447 struct snd_usb_midi *umidi = rmidi->private_data;
1448 struct port_info *port_info;
1449
1450 /* TODO: read port flags from descriptors */
1451 port_info = find_port_info(umidi, number);
1452 if (port_info) {
1453 seq_port_info->type = port_info->seq_flags;
1454 seq_port_info->midi_voices = port_info->voices;
1455 }
1456}
1457
86e07d34 1458static void snd_usbmidi_init_substream(struct snd_usb_midi* umidi,
1da177e4 1459 int stream, int number,
86e07d34 1460 struct snd_rawmidi_substream ** rsubstream)
1da177e4 1461{
a7b928ac 1462 struct port_info *port_info;
1da177e4
LT
1463 const char *name_format;
1464
86e07d34 1465 struct snd_rawmidi_substream *substream = snd_usbmidi_find_substream(umidi, stream, number);
1da177e4
LT
1466 if (!substream) {
1467 snd_printd(KERN_ERR "substream %d:%d not found\n", stream, number);
1468 return;
1469 }
1470
1471 /* TODO: read port name from jack descriptor */
a7b928ac
CL
1472 port_info = find_port_info(umidi, number);
1473 name_format = port_info ? port_info->name : "%s MIDI %d";
1da177e4 1474 snprintf(substream->name, sizeof(substream->name),
d82af9f9 1475 name_format, umidi->card->shortname, number + 1);
1da177e4
LT
1476
1477 *rsubstream = substream;
1478}
1479
1480/*
1481 * Creates the endpoints and their ports.
1482 */
86e07d34
TI
1483static int snd_usbmidi_create_endpoints(struct snd_usb_midi* umidi,
1484 struct snd_usb_midi_endpoint_info* endpoints)
1da177e4
LT
1485{
1486 int i, j, err;
1487 int out_ports = 0, in_ports = 0;
1488
1489 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
1490 if (endpoints[i].out_cables) {
1491 err = snd_usbmidi_out_endpoint_create(umidi, &endpoints[i],
1492 &umidi->endpoints[i]);
1493 if (err < 0)
1494 return err;
1495 }
1496 if (endpoints[i].in_cables) {
1497 err = snd_usbmidi_in_endpoint_create(umidi, &endpoints[i],
1498 &umidi->endpoints[i]);
1499 if (err < 0)
1500 return err;
1501 }
1502
1503 for (j = 0; j < 0x10; ++j) {
1504 if (endpoints[i].out_cables & (1 << j)) {
1505 snd_usbmidi_init_substream(umidi, SNDRV_RAWMIDI_STREAM_OUTPUT, out_ports,
1506 &umidi->endpoints[i].out->ports[j].substream);
1507 ++out_ports;
1508 }
1509 if (endpoints[i].in_cables & (1 << j)) {
1510 snd_usbmidi_init_substream(umidi, SNDRV_RAWMIDI_STREAM_INPUT, in_ports,
1511 &umidi->endpoints[i].in->ports[j].substream);
1512 ++in_ports;
1513 }
1514 }
1515 }
1516 snd_printdd(KERN_INFO "created %d output and %d input ports\n",
1517 out_ports, in_ports);
1518 return 0;
1519}
1520
1521/*
1522 * Returns MIDIStreaming device capabilities.
1523 */
86e07d34
TI
1524static int snd_usbmidi_get_ms_info(struct snd_usb_midi* umidi,
1525 struct snd_usb_midi_endpoint_info* endpoints)
1da177e4
LT
1526{
1527 struct usb_interface* intf;
1528 struct usb_host_interface *hostif;
1529 struct usb_interface_descriptor* intfd;
1530 struct usb_ms_header_descriptor* ms_header;
1531 struct usb_host_endpoint *hostep;
1532 struct usb_endpoint_descriptor* ep;
1533 struct usb_ms_endpoint_descriptor* ms_ep;
1534 int i, epidx;
1535
1536 intf = umidi->iface;
1537 if (!intf)
1538 return -ENXIO;
1539 hostif = &intf->altsetting[0];
1540 intfd = get_iface_desc(hostif);
1541 ms_header = (struct usb_ms_header_descriptor*)hostif->extra;
1542 if (hostif->extralen >= 7 &&
1543 ms_header->bLength >= 7 &&
1544 ms_header->bDescriptorType == USB_DT_CS_INTERFACE &&
de48c7bc 1545 ms_header->bDescriptorSubtype == UAC_HEADER)
1da177e4
LT
1546 snd_printdd(KERN_INFO "MIDIStreaming version %02x.%02x\n",
1547 ms_header->bcdMSC[1], ms_header->bcdMSC[0]);
1548 else
1549 snd_printk(KERN_WARNING "MIDIStreaming interface descriptor not found\n");
1550
1551 epidx = 0;
1552 for (i = 0; i < intfd->bNumEndpoints; ++i) {
1553 hostep = &hostif->endpoint[i];
1554 ep = get_ep_desc(hostep);
913ae5a2 1555 if (!usb_endpoint_xfer_bulk(ep) && !usb_endpoint_xfer_int(ep))
1da177e4
LT
1556 continue;
1557 ms_ep = (struct usb_ms_endpoint_descriptor*)hostep->extra;
1558 if (hostep->extralen < 4 ||
1559 ms_ep->bLength < 4 ||
1560 ms_ep->bDescriptorType != USB_DT_CS_ENDPOINT ||
de48c7bc 1561 ms_ep->bDescriptorSubtype != UAC_MS_GENERAL)
1da177e4 1562 continue;
42a6e66f 1563 if (usb_endpoint_dir_out(ep)) {
1da177e4
LT
1564 if (endpoints[epidx].out_ep) {
1565 if (++epidx >= MIDI_MAX_ENDPOINTS) {
1566 snd_printk(KERN_WARNING "too many endpoints\n");
1567 break;
1568 }
1569 }
42a6e66f
JL
1570 endpoints[epidx].out_ep = usb_endpoint_num(ep);
1571 if (usb_endpoint_xfer_int(ep))
1da177e4 1572 endpoints[epidx].out_interval = ep->bInterval;
d82af9f9 1573 else if (snd_usb_get_speed(umidi->dev) == USB_SPEED_LOW)
56162aab
CL
1574 /*
1575 * Low speed bulk transfers don't exist, so
1576 * force interrupt transfers for devices like
1577 * ESI MIDI Mate that try to use them anyway.
1578 */
1579 endpoints[epidx].out_interval = 1;
1da177e4
LT
1580 endpoints[epidx].out_cables = (1 << ms_ep->bNumEmbMIDIJack) - 1;
1581 snd_printdd(KERN_INFO "EP %02X: %d jack(s)\n",
1582 ep->bEndpointAddress, ms_ep->bNumEmbMIDIJack);
1583 } else {
1584 if (endpoints[epidx].in_ep) {
1585 if (++epidx >= MIDI_MAX_ENDPOINTS) {
1586 snd_printk(KERN_WARNING "too many endpoints\n");
1587 break;
1588 }
1589 }
42a6e66f
JL
1590 endpoints[epidx].in_ep = usb_endpoint_num(ep);
1591 if (usb_endpoint_xfer_int(ep))
1da177e4 1592 endpoints[epidx].in_interval = ep->bInterval;
d82af9f9 1593 else if (snd_usb_get_speed(umidi->dev) == USB_SPEED_LOW)
56162aab 1594 endpoints[epidx].in_interval = 1;
1da177e4
LT
1595 endpoints[epidx].in_cables = (1 << ms_ep->bNumEmbMIDIJack) - 1;
1596 snd_printdd(KERN_INFO "EP %02X: %d jack(s)\n",
1597 ep->bEndpointAddress, ms_ep->bNumEmbMIDIJack);
1598 }
1599 }
1600 return 0;
1601}
1602
96f61d9a
CL
1603static int roland_load_info(struct snd_kcontrol *kcontrol,
1604 struct snd_ctl_elem_info *info)
1605{
1606 static const char *const names[] = { "High Load", "Light Load" };
1607
1608 info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1609 info->count = 1;
1610 info->value.enumerated.items = 2;
1611 if (info->value.enumerated.item > 1)
1612 info->value.enumerated.item = 1;
1613 strcpy(info->value.enumerated.name, names[info->value.enumerated.item]);
1614 return 0;
1615}
1616
1617static int roland_load_get(struct snd_kcontrol *kcontrol,
1618 struct snd_ctl_elem_value *value)
1619{
1620 value->value.enumerated.item[0] = kcontrol->private_value;
1621 return 0;
1622}
1623
1624static int roland_load_put(struct snd_kcontrol *kcontrol,
1625 struct snd_ctl_elem_value *value)
1626{
1627 struct snd_usb_midi* umidi = kcontrol->private_data;
1628 int changed;
1629
1630 if (value->value.enumerated.item[0] > 1)
1631 return -EINVAL;
1632 mutex_lock(&umidi->mutex);
1633 changed = value->value.enumerated.item[0] != kcontrol->private_value;
1634 if (changed)
1635 kcontrol->private_value = value->value.enumerated.item[0];
1636 mutex_unlock(&umidi->mutex);
1637 return changed;
1638}
1639
1640static struct snd_kcontrol_new roland_load_ctl = {
1641 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1642 .name = "MIDI Input Mode",
1643 .info = roland_load_info,
1644 .get = roland_load_get,
1645 .put = roland_load_put,
1646 .private_value = 1,
1647};
1648
1da177e4
LT
1649/*
1650 * On Roland devices, use the second alternate setting to be able to use
1651 * the interrupt input endpoint.
1652 */
86e07d34 1653static void snd_usbmidi_switch_roland_altsetting(struct snd_usb_midi* umidi)
1da177e4
LT
1654{
1655 struct usb_interface* intf;
1656 struct usb_host_interface *hostif;
1657 struct usb_interface_descriptor* intfd;
1658
1659 intf = umidi->iface;
1660 if (!intf || intf->num_altsetting != 2)
1661 return;
1662
1663 hostif = &intf->altsetting[1];
1664 intfd = get_iface_desc(hostif);
1665 if (intfd->bNumEndpoints != 2 ||
1666 (get_endpoint(hostif, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_BULK ||
1667 (get_endpoint(hostif, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_INT)
1668 return;
1669
1670 snd_printdd(KERN_INFO "switching to altsetting %d with int ep\n",
1671 intfd->bAlternateSetting);
d82af9f9 1672 usb_set_interface(umidi->dev, intfd->bInterfaceNumber,
1da177e4 1673 intfd->bAlternateSetting);
96f61d9a
CL
1674
1675 umidi->roland_load_ctl = snd_ctl_new1(&roland_load_ctl, umidi);
d82af9f9 1676 if (snd_ctl_add(umidi->card, umidi->roland_load_ctl) < 0)
96f61d9a 1677 umidi->roland_load_ctl = NULL;
1da177e4
LT
1678}
1679
1680/*
1681 * Try to find any usable endpoints in the interface.
1682 */
86e07d34
TI
1683static int snd_usbmidi_detect_endpoints(struct snd_usb_midi* umidi,
1684 struct snd_usb_midi_endpoint_info* endpoint,
1da177e4
LT
1685 int max_endpoints)
1686{
1687 struct usb_interface* intf;
1688 struct usb_host_interface *hostif;
1689 struct usb_interface_descriptor* intfd;
1690 struct usb_endpoint_descriptor* epd;
1691 int i, out_eps = 0, in_eps = 0;
1692
d82af9f9 1693 if (USB_ID_VENDOR(umidi->usb_id) == 0x0582)
1da177e4
LT
1694 snd_usbmidi_switch_roland_altsetting(umidi);
1695
c1ab5d59
CL
1696 if (endpoint[0].out_ep || endpoint[0].in_ep)
1697 return 0;
1698
1da177e4
LT
1699 intf = umidi->iface;
1700 if (!intf || intf->num_altsetting < 1)
1701 return -ENOENT;
1702 hostif = intf->cur_altsetting;
1703 intfd = get_iface_desc(hostif);
1704
1705 for (i = 0; i < intfd->bNumEndpoints; ++i) {
1706 epd = get_endpoint(hostif, i);
913ae5a2
JL
1707 if (!usb_endpoint_xfer_bulk(epd) &&
1708 !usb_endpoint_xfer_int(epd))
1da177e4
LT
1709 continue;
1710 if (out_eps < max_endpoints &&
42a6e66f
JL
1711 usb_endpoint_dir_out(epd)) {
1712 endpoint[out_eps].out_ep = usb_endpoint_num(epd);
1713 if (usb_endpoint_xfer_int(epd))
1da177e4
LT
1714 endpoint[out_eps].out_interval = epd->bInterval;
1715 ++out_eps;
1716 }
1717 if (in_eps < max_endpoints &&
42a6e66f
JL
1718 usb_endpoint_dir_in(epd)) {
1719 endpoint[in_eps].in_ep = usb_endpoint_num(epd);
1720 if (usb_endpoint_xfer_int(epd))
1da177e4
LT
1721 endpoint[in_eps].in_interval = epd->bInterval;
1722 ++in_eps;
1723 }
1724 }
1725 return (out_eps || in_eps) ? 0 : -ENOENT;
1726}
1727
1728/*
1729 * Detects the endpoints for one-port-per-endpoint protocols.
1730 */
86e07d34
TI
1731static int snd_usbmidi_detect_per_port_endpoints(struct snd_usb_midi* umidi,
1732 struct snd_usb_midi_endpoint_info* endpoints)
1da177e4
LT
1733{
1734 int err, i;
1735
1736 err = snd_usbmidi_detect_endpoints(umidi, endpoints, MIDI_MAX_ENDPOINTS);
1737 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
1738 if (endpoints[i].out_ep)
1739 endpoints[i].out_cables = 0x0001;
1740 if (endpoints[i].in_ep)
1741 endpoints[i].in_cables = 0x0001;
1742 }
1743 return err;
1744}
1745
1746/*
1747 * Detects the endpoints and ports of Yamaha devices.
1748 */
86e07d34
TI
1749static int snd_usbmidi_detect_yamaha(struct snd_usb_midi* umidi,
1750 struct snd_usb_midi_endpoint_info* endpoint)
1da177e4
LT
1751{
1752 struct usb_interface* intf;
1753 struct usb_host_interface *hostif;
1754 struct usb_interface_descriptor* intfd;
1755 uint8_t* cs_desc;
1756
1757 intf = umidi->iface;
1758 if (!intf)
1759 return -ENOENT;
1760 hostif = intf->altsetting;
1761 intfd = get_iface_desc(hostif);
1762 if (intfd->bNumEndpoints < 1)
1763 return -ENOENT;
1764
1765 /*
1766 * For each port there is one MIDI_IN/OUT_JACK descriptor, not
1767 * necessarily with any useful contents. So simply count 'em.
1768 */
1769 for (cs_desc = hostif->extra;
1770 cs_desc < hostif->extra + hostif->extralen && cs_desc[0] >= 2;
1771 cs_desc += cs_desc[0]) {
c4a87ef4 1772 if (cs_desc[1] == USB_DT_CS_INTERFACE) {
de48c7bc 1773 if (cs_desc[2] == UAC_MIDI_IN_JACK)
1da177e4 1774 endpoint->in_cables = (endpoint->in_cables << 1) | 1;
de48c7bc 1775 else if (cs_desc[2] == UAC_MIDI_OUT_JACK)
1da177e4
LT
1776 endpoint->out_cables = (endpoint->out_cables << 1) | 1;
1777 }
1778 }
1779 if (!endpoint->in_cables && !endpoint->out_cables)
1780 return -ENOENT;
1781
1782 return snd_usbmidi_detect_endpoints(umidi, endpoint, 1);
1783}
1784
1785/*
1786 * Creates the endpoints and their ports for Midiman devices.
1787 */
86e07d34
TI
1788static int snd_usbmidi_create_endpoints_midiman(struct snd_usb_midi* umidi,
1789 struct snd_usb_midi_endpoint_info* endpoint)
1da177e4 1790{
86e07d34 1791 struct snd_usb_midi_endpoint_info ep_info;
1da177e4
LT
1792 struct usb_interface* intf;
1793 struct usb_host_interface *hostif;
1794 struct usb_interface_descriptor* intfd;
1795 struct usb_endpoint_descriptor* epd;
1796 int cable, err;
1797
1798 intf = umidi->iface;
1799 if (!intf)
1800 return -ENOENT;
1801 hostif = intf->altsetting;
1802 intfd = get_iface_desc(hostif);
1803 /*
1804 * The various MidiSport devices have more or less random endpoint
1805 * numbers, so we have to identify the endpoints by their index in
1806 * the descriptor array, like the driver for that other OS does.
1807 *
1808 * There is one interrupt input endpoint for all input ports, one
1809 * bulk output endpoint for even-numbered ports, and one for odd-
1810 * numbered ports. Both bulk output endpoints have corresponding
1811 * input bulk endpoints (at indices 1 and 3) which aren't used.
1812 */
1813 if (intfd->bNumEndpoints < (endpoint->out_cables > 0x0001 ? 5 : 3)) {
1814 snd_printdd(KERN_ERR "not enough endpoints\n");
1815 return -ENOENT;
1816 }
1817
1818 epd = get_endpoint(hostif, 0);
913ae5a2 1819 if (!usb_endpoint_dir_in(epd) || !usb_endpoint_xfer_int(epd)) {
1da177e4
LT
1820 snd_printdd(KERN_ERR "endpoint[0] isn't interrupt\n");
1821 return -ENXIO;
1822 }
1823 epd = get_endpoint(hostif, 2);
913ae5a2 1824 if (!usb_endpoint_dir_out(epd) || !usb_endpoint_xfer_bulk(epd)) {
1da177e4
LT
1825 snd_printdd(KERN_ERR "endpoint[2] isn't bulk output\n");
1826 return -ENXIO;
1827 }
1828 if (endpoint->out_cables > 0x0001) {
1829 epd = get_endpoint(hostif, 4);
913ae5a2
JL
1830 if (!usb_endpoint_dir_out(epd) ||
1831 !usb_endpoint_xfer_bulk(epd)) {
1da177e4
LT
1832 snd_printdd(KERN_ERR "endpoint[4] isn't bulk output\n");
1833 return -ENXIO;
1834 }
1835 }
1836
1837 ep_info.out_ep = get_endpoint(hostif, 2)->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
e156ac4c 1838 ep_info.out_interval = 0;
1da177e4
LT
1839 ep_info.out_cables = endpoint->out_cables & 0x5555;
1840 err = snd_usbmidi_out_endpoint_create(umidi, &ep_info, &umidi->endpoints[0]);
1841 if (err < 0)
1842 return err;
1843
1844 ep_info.in_ep = get_endpoint(hostif, 0)->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
1845 ep_info.in_interval = get_endpoint(hostif, 0)->bInterval;
1846 ep_info.in_cables = endpoint->in_cables;
1847 err = snd_usbmidi_in_endpoint_create(umidi, &ep_info, &umidi->endpoints[0]);
1848 if (err < 0)
1849 return err;
1850
1851 if (endpoint->out_cables > 0x0001) {
1852 ep_info.out_ep = get_endpoint(hostif, 4)->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
1853 ep_info.out_cables = endpoint->out_cables & 0xaaaa;
1854 err = snd_usbmidi_out_endpoint_create(umidi, &ep_info, &umidi->endpoints[1]);
1855 if (err < 0)
1856 return err;
1857 }
1858
1859 for (cable = 0; cable < 0x10; ++cable) {
1860 if (endpoint->out_cables & (1 << cable))
1861 snd_usbmidi_init_substream(umidi, SNDRV_RAWMIDI_STREAM_OUTPUT, cable,
1862 &umidi->endpoints[cable & 1].out->ports[cable].substream);
1863 if (endpoint->in_cables & (1 << cable))
1864 snd_usbmidi_init_substream(umidi, SNDRV_RAWMIDI_STREAM_INPUT, cable,
1865 &umidi->endpoints[0].in->ports[cable].substream);
1866 }
1867 return 0;
1868}
1869
a7b928ac
CL
1870static struct snd_rawmidi_global_ops snd_usbmidi_ops = {
1871 .get_port_info = snd_usbmidi_get_port_info,
1872};
1873
86e07d34 1874static int snd_usbmidi_create_rawmidi(struct snd_usb_midi* umidi,
1da177e4
LT
1875 int out_ports, int in_ports)
1876{
86e07d34 1877 struct snd_rawmidi *rmidi;
1da177e4
LT
1878 int err;
1879
d82af9f9
CL
1880 err = snd_rawmidi_new(umidi->card, "USB MIDI",
1881 umidi->next_midi_device++,
1da177e4
LT
1882 out_ports, in_ports, &rmidi);
1883 if (err < 0)
1884 return err;
d82af9f9 1885 strcpy(rmidi->name, umidi->card->shortname);
1da177e4
LT
1886 rmidi->info_flags = SNDRV_RAWMIDI_INFO_OUTPUT |
1887 SNDRV_RAWMIDI_INFO_INPUT |
1888 SNDRV_RAWMIDI_INFO_DUPLEX;
a7b928ac 1889 rmidi->ops = &snd_usbmidi_ops;
1da177e4
LT
1890 rmidi->private_data = umidi;
1891 rmidi->private_free = snd_usbmidi_rawmidi_free;
1892 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_usbmidi_output_ops);
1893 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_usbmidi_input_ops);
1894
1895 umidi->rmidi = rmidi;
1896 return 0;
1897}
1898
1899/*
1900 * Temporarily stop input.
1901 */
1902void snd_usbmidi_input_stop(struct list_head* p)
1903{
86e07d34 1904 struct snd_usb_midi* umidi;
4773d1fb 1905 unsigned int i, j;
1da177e4 1906
86e07d34 1907 umidi = list_entry(p, struct snd_usb_midi, list);
1da177e4 1908 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
86e07d34 1909 struct snd_usb_midi_endpoint* ep = &umidi->endpoints[i];
1da177e4 1910 if (ep->in)
4773d1fb
CL
1911 for (j = 0; j < INPUT_URBS; ++j)
1912 usb_kill_urb(ep->in->urbs[j]);
1da177e4
LT
1913 }
1914}
1915
86e07d34 1916static void snd_usbmidi_input_start_ep(struct snd_usb_midi_in_endpoint* ep)
1da177e4 1917{
4773d1fb
CL
1918 unsigned int i;
1919
1920 if (!ep)
1921 return;
1922 for (i = 0; i < INPUT_URBS; ++i) {
1923 struct urb* urb = ep->urbs[i];
d82af9f9 1924 urb->dev = ep->umidi->dev;
1da177e4
LT
1925 snd_usbmidi_submit_urb(urb, GFP_KERNEL);
1926 }
1927}
1928
1929/*
1930 * Resume input after a call to snd_usbmidi_input_stop().
1931 */
1932void snd_usbmidi_input_start(struct list_head* p)
1933{
86e07d34 1934 struct snd_usb_midi* umidi;
1da177e4
LT
1935 int i;
1936
86e07d34 1937 umidi = list_entry(p, struct snd_usb_midi, list);
1da177e4
LT
1938 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i)
1939 snd_usbmidi_input_start_ep(umidi->endpoints[i].in);
1940}
1941
1942/*
1943 * Creates and registers everything needed for a MIDI streaming interface.
1944 */
d82af9f9
CL
1945int snd_usbmidi_create(struct snd_card *card,
1946 struct usb_interface* iface,
1947 struct list_head *midi_list,
1948 const struct snd_usb_audio_quirk* quirk)
1da177e4 1949{
86e07d34
TI
1950 struct snd_usb_midi* umidi;
1951 struct snd_usb_midi_endpoint_info endpoints[MIDI_MAX_ENDPOINTS];
1da177e4
LT
1952 int out_ports, in_ports;
1953 int i, err;
1954
561b220a 1955 umidi = kzalloc(sizeof(*umidi), GFP_KERNEL);
1da177e4
LT
1956 if (!umidi)
1957 return -ENOMEM;
d82af9f9
CL
1958 umidi->dev = interface_to_usbdev(iface);
1959 umidi->card = card;
1da177e4
LT
1960 umidi->iface = iface;
1961 umidi->quirk = quirk;
1962 umidi->usb_protocol_ops = &snd_usbmidi_standard_ops;
c8846970 1963 init_timer(&umidi->error_timer);
c0792e00 1964 spin_lock_init(&umidi->disc_lock);
96f61d9a 1965 mutex_init(&umidi->mutex);
d82af9f9
CL
1966 umidi->usb_id = USB_ID(le16_to_cpu(umidi->dev->descriptor.idVendor),
1967 le16_to_cpu(umidi->dev->descriptor.idProduct));
c8846970
CL
1968 umidi->error_timer.function = snd_usbmidi_error_timer;
1969 umidi->error_timer.data = (unsigned long)umidi;
1da177e4
LT
1970
1971 /* detect the endpoint(s) to use */
1972 memset(endpoints, 0, sizeof(endpoints));
d1bda045
CL
1973 switch (quirk ? quirk->type : QUIRK_MIDI_STANDARD_INTERFACE) {
1974 case QUIRK_MIDI_STANDARD_INTERFACE:
1da177e4 1975 err = snd_usbmidi_get_ms_info(umidi, endpoints);
d82af9f9 1976 if (umidi->usb_id == USB_ID(0x0763, 0x0150)) /* M-Audio Uno */
d05cc104
CL
1977 umidi->usb_protocol_ops =
1978 &snd_usbmidi_maudio_broken_running_status_ops;
d1bda045 1979 break;
030a07e4
KW
1980 case QUIRK_MIDI_US122L:
1981 umidi->usb_protocol_ops = &snd_usbmidi_122l_ops;
1982 /* fall through */
d1bda045
CL
1983 case QUIRK_MIDI_FIXED_ENDPOINT:
1984 memcpy(&endpoints[0], quirk->data,
86e07d34 1985 sizeof(struct snd_usb_midi_endpoint_info));
d1bda045
CL
1986 err = snd_usbmidi_detect_endpoints(umidi, &endpoints[0], 1);
1987 break;
1988 case QUIRK_MIDI_YAMAHA:
1989 err = snd_usbmidi_detect_yamaha(umidi, &endpoints[0]);
1990 break;
1991 case QUIRK_MIDI_MIDIMAN:
1992 umidi->usb_protocol_ops = &snd_usbmidi_midiman_ops;
1993 memcpy(&endpoints[0], quirk->data,
86e07d34 1994 sizeof(struct snd_usb_midi_endpoint_info));
d1bda045
CL
1995 err = 0;
1996 break;
1997 case QUIRK_MIDI_NOVATION:
1998 umidi->usb_protocol_ops = &snd_usbmidi_novation_ops;
1999 err = snd_usbmidi_detect_per_port_endpoints(umidi, endpoints);
2000 break;
55de5ef9 2001 case QUIRK_MIDI_FASTLANE:
d1bda045 2002 umidi->usb_protocol_ops = &snd_usbmidi_raw_ops;
55de5ef9
CL
2003 /*
2004 * Interface 1 contains isochronous endpoints, but with the same
2005 * numbers as in interface 0. Since it is interface 1 that the
2006 * USB core has most recently seen, these descriptors are now
2007 * associated with the endpoint numbers. This will foul up our
2008 * attempts to submit bulk/interrupt URBs to the endpoints in
2009 * interface 0, so we have to make sure that the USB core looks
2010 * again at interface 0 by calling usb_set_interface() on it.
2011 */
d82af9f9 2012 usb_set_interface(umidi->dev, 0, 0);
d1bda045
CL
2013 err = snd_usbmidi_detect_per_port_endpoints(umidi, endpoints);
2014 break;
2015 case QUIRK_MIDI_EMAGIC:
2016 umidi->usb_protocol_ops = &snd_usbmidi_emagic_ops;
2017 memcpy(&endpoints[0], quirk->data,
86e07d34 2018 sizeof(struct snd_usb_midi_endpoint_info));
d1bda045
CL
2019 err = snd_usbmidi_detect_endpoints(umidi, &endpoints[0], 1);
2020 break;
cc7a59bd 2021 case QUIRK_MIDI_CME:
61870aed 2022 umidi->usb_protocol_ops = &snd_usbmidi_cme_ops;
d1bda045
CL
2023 err = snd_usbmidi_detect_per_port_endpoints(umidi, endpoints);
2024 break;
2025 default:
2026 snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
2027 err = -ENXIO;
2028 break;
1da177e4
LT
2029 }
2030 if (err < 0) {
2031 kfree(umidi);
2032 return err;
2033 }
2034
2035 /* create rawmidi device */
2036 out_ports = 0;
2037 in_ports = 0;
2038 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
fbc54391
AM
2039 out_ports += hweight16(endpoints[i].out_cables);
2040 in_ports += hweight16(endpoints[i].in_cables);
1da177e4
LT
2041 }
2042 err = snd_usbmidi_create_rawmidi(umidi, out_ports, in_ports);
2043 if (err < 0) {
2044 kfree(umidi);
2045 return err;
2046 }
2047
2048 /* create endpoint/port structures */
2049 if (quirk && quirk->type == QUIRK_MIDI_MIDIMAN)
2050 err = snd_usbmidi_create_endpoints_midiman(umidi, &endpoints[0]);
2051 else
2052 err = snd_usbmidi_create_endpoints(umidi, endpoints);
2053 if (err < 0) {
2054 snd_usbmidi_free(umidi);
2055 return err;
2056 }
2057
d82af9f9 2058 list_add_tail(&umidi->list, midi_list);
1da177e4
LT
2059
2060 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i)
2061 snd_usbmidi_input_start_ep(umidi->endpoints[i].in);
2062 return 0;
2063}
2064
d82af9f9 2065EXPORT_SYMBOL(snd_usbmidi_create);
1da177e4
LT
2066EXPORT_SYMBOL(snd_usbmidi_input_stop);
2067EXPORT_SYMBOL(snd_usbmidi_input_start);
2068EXPORT_SYMBOL(snd_usbmidi_disconnect);