blob: 551ab4227256562949a7db5cfa819eb381e73a03 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * usbmidi.c - ALSA USB MIDI driver
3 *
Clemens Ladisch96f61d92009-10-22 09:06:19 +02004 * Copyright (c) 2002-2009 Clemens Ladisch
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#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>
Clemens Ladischc8846972005-08-02 15:26:52 +020046#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/usb.h>
Clemens Ladischa65dd992009-07-13 13:48:36 +020048#include <linux/wait.h>
Daniel Mackde48c7b2010-02-22 23:49:13 +010049#include <linux/usb/audio.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040050#include <linux/module.h>
Daniel Mackde48c7b2010-02-22 23:49:13 +010051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <sound/core.h>
Clemens Ladisch96f61d92009-10-22 09:06:19 +020053#include <sound/control.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <sound/rawmidi.h>
Clemens Ladischa7b928a2006-05-02 16:22:12 +020055#include <sound/asequencer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include "usbaudio.h"
Daniel Macke5779992010-03-04 19:46:13 +010057#include "midi.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010058#include "power.h"
Daniel Macke5779992010-03-04 19:46:13 +010059#include "helper.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/*
62 * define this to log all USB packets
63 */
64/* #define DUMP_PACKETS */
65
Clemens Ladischc8846972005-08-02 15:26:52 +020066/*
67 * how long to wait after some USB errors, so that khubd can disconnect() us
68 * without too many spurious errors
69 */
70#define ERROR_DELAY_JIFFIES (HZ / 10)
71
Clemens Ladisched4affa2009-07-13 13:43:59 +020072#define OUTPUT_URBS 7
Clemens Ladisch4773d1f2009-07-13 13:40:36 +020073#define INPUT_URBS 7
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
77MODULE_DESCRIPTION("USB Audio/MIDI helper module");
78MODULE_LICENSE("Dual BSD/GPL");
79
80
81struct usb_ms_header_descriptor {
82 __u8 bLength;
83 __u8 bDescriptorType;
84 __u8 bDescriptorSubtype;
85 __u8 bcdMSC[2];
86 __le16 wTotalLength;
87} __attribute__ ((packed));
88
89struct usb_ms_endpoint_descriptor {
90 __u8 bLength;
91 __u8 bDescriptorType;
92 __u8 bDescriptorSubtype;
93 __u8 bNumEmbMIDIJack;
94 __u8 baAssocJackID[0];
95} __attribute__ ((packed));
96
Takashi Iwai86e07d32005-11-17 15:08:02 +010097struct snd_usb_midi_in_endpoint;
98struct snd_usb_midi_out_endpoint;
99struct snd_usb_midi_endpoint;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101struct usb_protocol_ops {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100102 void (*input)(struct snd_usb_midi_in_endpoint*, uint8_t*, int);
Clemens Ladisched4affa2009-07-13 13:43:59 +0200103 void (*output)(struct snd_usb_midi_out_endpoint *ep, struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 void (*output_packet)(struct urb*, uint8_t, uint8_t, uint8_t, uint8_t);
Takashi Iwai86e07d32005-11-17 15:08:02 +0100105 void (*init_out_endpoint)(struct snd_usb_midi_out_endpoint*);
106 void (*finish_out_endpoint)(struct snd_usb_midi_out_endpoint*);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107};
108
109struct snd_usb_midi {
Clemens Ladischd82af9f2009-11-16 12:23:46 +0100110 struct usb_device *dev;
111 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 struct usb_interface *iface;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100113 const struct snd_usb_audio_quirk *quirk;
114 struct snd_rawmidi *rmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 struct usb_protocol_ops* usb_protocol_ops;
116 struct list_head list;
Clemens Ladischc8846972005-08-02 15:26:52 +0200117 struct timer_list error_timer;
Takashi Iwaic0792e02008-02-22 18:34:44 +0100118 spinlock_t disc_lock;
Takashi Iwai2ca77192012-12-03 11:12:46 +0100119 struct rw_semaphore disc_rwsem;
Clemens Ladisch96f61d92009-10-22 09:06:19 +0200120 struct mutex mutex;
Clemens Ladischd82af9f2009-11-16 12:23:46 +0100121 u32 usb_id;
122 int next_midi_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 struct snd_usb_midi_endpoint {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100125 struct snd_usb_midi_out_endpoint *out;
126 struct snd_usb_midi_in_endpoint *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 } endpoints[MIDI_MAX_ENDPOINTS];
128 unsigned long input_triggered;
Takashi Iwai394c9d82012-12-03 11:30:50 +0100129 unsigned int opened[2];
Takashi Iwaic0792e02008-02-22 18:34:44 +0100130 unsigned char disconnected;
Takashi Iwai394c9d82012-12-03 11:30:50 +0100131 unsigned char input_running;
Clemens Ladisch96f61d92009-10-22 09:06:19 +0200132
133 struct snd_kcontrol *roland_load_ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134};
135
136struct snd_usb_midi_out_endpoint {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100137 struct snd_usb_midi* umidi;
Clemens Ladisched4affa2009-07-13 13:43:59 +0200138 struct out_urb_context {
139 struct urb *urb;
140 struct snd_usb_midi_out_endpoint *ep;
141 } urbs[OUTPUT_URBS];
142 unsigned int active_urbs;
Clemens Ladischa65dd992009-07-13 13:48:36 +0200143 unsigned int drain_urbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 int max_transfer; /* size of urb buffer */
145 struct tasklet_struct tasklet;
Clemens Ladischa65dd992009-07-13 13:48:36 +0200146 unsigned int next_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 spinlock_t buffer_lock;
148
149 struct usbmidi_out_port {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100150 struct snd_usb_midi_out_endpoint* ep;
151 struct snd_rawmidi_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int active;
153 uint8_t cable; /* cable number << 4 */
154 uint8_t state;
155#define STATE_UNKNOWN 0
156#define STATE_1PARAM 1
157#define STATE_2PARAM_1 2
158#define STATE_2PARAM_2 3
159#define STATE_SYSEX_0 4
160#define STATE_SYSEX_1 5
161#define STATE_SYSEX_2 6
162 uint8_t data[2];
163 } ports[0x10];
164 int current_port;
Clemens Ladischa65dd992009-07-13 13:48:36 +0200165
166 wait_queue_head_t drain_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167};
168
169struct snd_usb_midi_in_endpoint {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100170 struct snd_usb_midi* umidi;
Clemens Ladisch4773d1f2009-07-13 13:40:36 +0200171 struct urb* urbs[INPUT_URBS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 struct usbmidi_in_port {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100173 struct snd_rawmidi_substream *substream;
Clemens Ladischd05cc10432007-05-07 09:28:53 +0200174 u8 running_status_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 } ports[0x10];
Clemens Ladischc8846972005-08-02 15:26:52 +0200176 u8 seen_f5;
177 u8 error_resubmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 int current_port;
179};
180
Takashi Iwai86e07d32005-11-17 15:08:02 +0100181static void snd_usbmidi_do_output(struct snd_usb_midi_out_endpoint* ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183static const uint8_t snd_usbmidi_cin_length[] = {
184 0, 0, 2, 3, 3, 1, 2, 3, 3, 3, 3, 3, 2, 2, 3, 1
185};
186
187/*
188 * Submits the URB, with error handling.
189 */
Al Viro55016f12005-10-21 03:21:58 -0400190static int snd_usbmidi_submit_urb(struct urb* urb, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 int err = usb_submit_urb(urb, flags);
193 if (err < 0 && err != -ENODEV)
194 snd_printk(KERN_ERR "usb_submit_urb: %d\n", err);
195 return err;
196}
197
198/*
199 * Error handling for URB completion functions.
200 */
201static int snd_usbmidi_urb_error(int status)
202{
Clemens Ladischc8846972005-08-02 15:26:52 +0200203 switch (status) {
204 /* manually unlinked, or device gone */
205 case -ENOENT:
206 case -ECONNRESET:
207 case -ESHUTDOWN:
208 case -ENODEV:
209 return -ENODEV;
210 /* errors that might occur during unplugging */
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -0700211 case -EPROTO:
212 case -ETIME:
213 case -EILSEQ:
Clemens Ladischc8846972005-08-02 15:26:52 +0200214 return -EIO;
215 default:
216 snd_printk(KERN_ERR "urb status %d\n", status);
217 return 0; /* continue */
218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
221/*
222 * Receives a chunk of MIDI data.
223 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100224static void snd_usbmidi_input_data(struct snd_usb_midi_in_endpoint* ep, int portidx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 uint8_t* data, int length)
226{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100227 struct usbmidi_in_port* port = &ep->ports[portidx];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 if (!port->substream) {
230 snd_printd("unexpected port %d!\n", portidx);
231 return;
232 }
233 if (!test_bit(port->substream->number, &ep->umidi->input_triggered))
234 return;
235 snd_rawmidi_receive(port->substream, data, length);
236}
237
238#ifdef DUMP_PACKETS
239static void dump_urb(const char *type, const u8 *data, int length)
240{
241 snd_printk(KERN_DEBUG "%s packet: [", type);
242 for (; length > 0; ++data, --length)
243 printk(" %02x", *data);
244 printk(" ]\n");
245}
246#else
247#define dump_urb(type, data, length) /* nothing */
248#endif
249
250/*
251 * Processes the data read from the device.
252 */
David Howells7d12e782006-10-05 14:55:46 +0100253static void snd_usbmidi_in_urb_complete(struct urb* urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100255 struct snd_usb_midi_in_endpoint* ep = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 if (urb->status == 0) {
258 dump_urb("received", urb->transfer_buffer, urb->actual_length);
259 ep->umidi->usb_protocol_ops->input(ep, urb->transfer_buffer,
260 urb->actual_length);
261 } else {
Clemens Ladischc8846972005-08-02 15:26:52 +0200262 int err = snd_usbmidi_urb_error(urb->status);
263 if (err < 0) {
264 if (err != -ENODEV) {
265 ep->error_resubmit = 1;
266 mod_timer(&ep->umidi->error_timer,
267 jiffies + ERROR_DELAY_JIFFIES);
268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return;
Clemens Ladischc8846972005-08-02 15:26:52 +0200270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272
Clemens Ladischd82af9f2009-11-16 12:23:46 +0100273 urb->dev = ep->umidi->dev;
Clemens Ladisch3cfc1eb2005-09-26 10:01:12 +0200274 snd_usbmidi_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
David Howells7d12e782006-10-05 14:55:46 +0100277static void snd_usbmidi_out_urb_complete(struct urb* urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Clemens Ladisched4affa2009-07-13 13:43:59 +0200279 struct out_urb_context *context = urb->context;
280 struct snd_usb_midi_out_endpoint* ep = context->ep;
Clemens Ladischa65dd992009-07-13 13:48:36 +0200281 unsigned int urb_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 spin_lock(&ep->buffer_lock);
Clemens Ladischa65dd992009-07-13 13:48:36 +0200284 urb_index = context - ep->urbs;
285 ep->active_urbs &= ~(1 << urb_index);
286 if (unlikely(ep->drain_urbs)) {
287 ep->drain_urbs &= ~(1 << urb_index);
288 wake_up(&ep->drain_wait);
289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 spin_unlock(&ep->buffer_lock);
291 if (urb->status < 0) {
Clemens Ladischc8846972005-08-02 15:26:52 +0200292 int err = snd_usbmidi_urb_error(urb->status);
293 if (err < 0) {
294 if (err != -ENODEV)
295 mod_timer(&ep->umidi->error_timer,
296 jiffies + ERROR_DELAY_JIFFIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return;
Clemens Ladischc8846972005-08-02 15:26:52 +0200298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300 snd_usbmidi_do_output(ep);
301}
302
303/*
304 * This is called when some data should be transferred to the device
305 * (from one or more substreams).
306 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100307static void snd_usbmidi_do_output(struct snd_usb_midi_out_endpoint* ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Clemens Ladisched4affa2009-07-13 13:43:59 +0200309 unsigned int urb_index;
310 struct urb* urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 unsigned long flags;
312
313 spin_lock_irqsave(&ep->buffer_lock, flags);
Clemens Ladischd82af9f2009-11-16 12:23:46 +0100314 if (ep->umidi->disconnected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 spin_unlock_irqrestore(&ep->buffer_lock, flags);
316 return;
317 }
318
Clemens Ladischa65dd992009-07-13 13:48:36 +0200319 urb_index = ep->next_urb;
Clemens Ladisched4affa2009-07-13 13:43:59 +0200320 for (;;) {
Clemens Ladischa65dd992009-07-13 13:48:36 +0200321 if (!(ep->active_urbs & (1 << urb_index))) {
322 urb = ep->urbs[urb_index].urb;
323 urb->transfer_buffer_length = 0;
324 ep->umidi->usb_protocol_ops->output(ep, urb);
325 if (urb->transfer_buffer_length == 0)
Clemens Ladisched4affa2009-07-13 13:43:59 +0200326 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Clemens Ladischa65dd992009-07-13 13:48:36 +0200328 dump_urb("sending", urb->transfer_buffer,
329 urb->transfer_buffer_length);
Clemens Ladischd82af9f2009-11-16 12:23:46 +0100330 urb->dev = ep->umidi->dev;
Clemens Ladischa65dd992009-07-13 13:48:36 +0200331 if (snd_usbmidi_submit_urb(urb, GFP_ATOMIC) < 0)
332 break;
333 ep->active_urbs |= 1 << urb_index;
334 }
335 if (++urb_index >= OUTPUT_URBS)
336 urb_index = 0;
337 if (urb_index == ep->next_urb)
Clemens Ladisched4affa2009-07-13 13:43:59 +0200338 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
Clemens Ladischa65dd992009-07-13 13:48:36 +0200340 ep->next_urb = urb_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 spin_unlock_irqrestore(&ep->buffer_lock, flags);
342}
343
344static void snd_usbmidi_out_tasklet(unsigned long data)
345{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100346 struct snd_usb_midi_out_endpoint* ep = (struct snd_usb_midi_out_endpoint *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 snd_usbmidi_do_output(ep);
349}
350
Clemens Ladischc8846972005-08-02 15:26:52 +0200351/* called after transfers had been interrupted due to some USB error */
352static void snd_usbmidi_error_timer(unsigned long data)
353{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100354 struct snd_usb_midi *umidi = (struct snd_usb_midi *)data;
Clemens Ladisch4773d1f2009-07-13 13:40:36 +0200355 unsigned int i, j;
Clemens Ladischc8846972005-08-02 15:26:52 +0200356
Takashi Iwaic0792e02008-02-22 18:34:44 +0100357 spin_lock(&umidi->disc_lock);
358 if (umidi->disconnected) {
359 spin_unlock(&umidi->disc_lock);
360 return;
361 }
Clemens Ladischc8846972005-08-02 15:26:52 +0200362 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100363 struct snd_usb_midi_in_endpoint *in = umidi->endpoints[i].in;
Clemens Ladischc8846972005-08-02 15:26:52 +0200364 if (in && in->error_resubmit) {
365 in->error_resubmit = 0;
Clemens Ladisch4773d1f2009-07-13 13:40:36 +0200366 for (j = 0; j < INPUT_URBS; ++j) {
Takashi Iwaia28db4c2014-12-06 18:02:55 +0100367 if (atomic_read(&in->urbs[j]->use_count))
368 continue;
Clemens Ladischd82af9f2009-11-16 12:23:46 +0100369 in->urbs[j]->dev = umidi->dev;
Clemens Ladisch4773d1f2009-07-13 13:40:36 +0200370 snd_usbmidi_submit_urb(in->urbs[j], GFP_ATOMIC);
371 }
Clemens Ladischc8846972005-08-02 15:26:52 +0200372 }
373 if (umidi->endpoints[i].out)
374 snd_usbmidi_do_output(umidi->endpoints[i].out);
375 }
Takashi Iwaic0792e02008-02-22 18:34:44 +0100376 spin_unlock(&umidi->disc_lock);
Clemens Ladischc8846972005-08-02 15:26:52 +0200377}
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379/* helper function to send static data that may not DMA-able */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100380static int send_bulk_static_data(struct snd_usb_midi_out_endpoint* ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 const void *data, int len)
382{
Clemens Ladisched4affa2009-07-13 13:43:59 +0200383 int err = 0;
Alexey Dobriyan52978be2006-09-30 23:27:21 -0700384 void *buf = kmemdup(data, len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (!buf)
386 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 dump_urb("sending", buf, len);
Clemens Ladisched4affa2009-07-13 13:43:59 +0200388 if (ep->urbs[0].urb)
Clemens Ladischd82af9f2009-11-16 12:23:46 +0100389 err = usb_bulk_msg(ep->umidi->dev, ep->urbs[0].urb->pipe,
Clemens Ladisched4affa2009-07-13 13:43:59 +0200390 buf, len, NULL, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 kfree(buf);
392 return err;
393}
394
395/*
396 * Standard USB MIDI protocol: see the spec.
397 * Midiman protocol: like the standard protocol, but the control byte is the
398 * fourth byte in each packet, and uses length instead of CIN.
399 */
400
Takashi Iwai86e07d32005-11-17 15:08:02 +0100401static void snd_usbmidi_standard_input(struct snd_usb_midi_in_endpoint* ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 uint8_t* buffer, int buffer_length)
403{
404 int i;
405
406 for (i = 0; i + 3 < buffer_length; i += 4)
407 if (buffer[i] != 0) {
408 int cable = buffer[i] >> 4;
409 int length = snd_usbmidi_cin_length[buffer[i] & 0x0f];
410 snd_usbmidi_input_data(ep, cable, &buffer[i + 1], length);
411 }
412}
413
Takashi Iwai86e07d32005-11-17 15:08:02 +0100414static void snd_usbmidi_midiman_input(struct snd_usb_midi_in_endpoint* ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 uint8_t* buffer, int buffer_length)
416{
417 int i;
418
419 for (i = 0; i + 3 < buffer_length; i += 4)
420 if (buffer[i + 3] != 0) {
421 int port = buffer[i + 3] >> 4;
422 int length = buffer[i + 3] & 3;
423 snd_usbmidi_input_data(ep, port, &buffer[i], length);
424 }
425}
426
427/*
Clemens Ladischd05cc10432007-05-07 09:28:53 +0200428 * Buggy M-Audio device: running status on input results in a packet that has
429 * the data bytes but not the status byte and that is marked with CIN 4.
430 */
431static void snd_usbmidi_maudio_broken_running_status_input(
432 struct snd_usb_midi_in_endpoint* ep,
433 uint8_t* buffer, int buffer_length)
434{
435 int i;
436
437 for (i = 0; i + 3 < buffer_length; i += 4)
438 if (buffer[i] != 0) {
439 int cable = buffer[i] >> 4;
440 u8 cin = buffer[i] & 0x0f;
441 struct usbmidi_in_port *port = &ep->ports[cable];
442 int length;
Daniel Mack21af7d82010-06-16 17:57:29 +0200443
Clemens Ladischd05cc10432007-05-07 09:28:53 +0200444 length = snd_usbmidi_cin_length[cin];
445 if (cin == 0xf && buffer[i + 1] >= 0xf8)
446 ; /* realtime msg: no running status change */
447 else if (cin >= 0x8 && cin <= 0xe)
448 /* channel msg */
449 port->running_status_length = length - 1;
450 else if (cin == 0x4 &&
451 port->running_status_length != 0 &&
452 buffer[i + 1] < 0x80)
453 /* CIN 4 that is not a SysEx */
454 length = port->running_status_length;
455 else
456 /*
457 * All other msgs cannot begin running status.
458 * (A channel msg sent as two or three CIN 0xF
459 * packets could in theory, but this device
460 * doesn't use this format.)
461 */
462 port->running_status_length = 0;
463 snd_usbmidi_input_data(ep, cable, &buffer[i + 1], length);
464 }
465}
466
467/*
Clemens Ladisch61870ae2007-08-16 08:44:51 +0200468 * CME protocol: like the standard protocol, but SysEx commands are sent as a
469 * single USB packet preceded by a 0x0F byte.
470 */
471static void snd_usbmidi_cme_input(struct snd_usb_midi_in_endpoint *ep,
472 uint8_t *buffer, int buffer_length)
473{
474 if (buffer_length < 2 || (buffer[0] & 0x0f) != 0x0f)
475 snd_usbmidi_standard_input(ep, buffer, buffer_length);
476 else
477 snd_usbmidi_input_data(ep, buffer[0] >> 4,
478 &buffer[1], buffer_length - 1);
479}
480
481/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 * Adds one USB MIDI packet to the output buffer.
483 */
484static void snd_usbmidi_output_standard_packet(struct urb* urb, uint8_t p0,
485 uint8_t p1, uint8_t p2, uint8_t p3)
486{
487
488 uint8_t* buf = (uint8_t*)urb->transfer_buffer + urb->transfer_buffer_length;
489 buf[0] = p0;
490 buf[1] = p1;
491 buf[2] = p2;
492 buf[3] = p3;
493 urb->transfer_buffer_length += 4;
494}
495
496/*
497 * Adds one Midiman packet to the output buffer.
498 */
499static void snd_usbmidi_output_midiman_packet(struct urb* urb, uint8_t p0,
500 uint8_t p1, uint8_t p2, uint8_t p3)
501{
502
503 uint8_t* buf = (uint8_t*)urb->transfer_buffer + urb->transfer_buffer_length;
504 buf[0] = p1;
505 buf[1] = p2;
506 buf[2] = p3;
507 buf[3] = (p0 & 0xf0) | snd_usbmidi_cin_length[p0 & 0x0f];
508 urb->transfer_buffer_length += 4;
509}
510
511/*
512 * Converts MIDI commands to USB MIDI packets.
513 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100514static void snd_usbmidi_transmit_byte(struct usbmidi_out_port* port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 uint8_t b, struct urb* urb)
516{
517 uint8_t p0 = port->cable;
518 void (*output_packet)(struct urb*, uint8_t, uint8_t, uint8_t, uint8_t) =
519 port->ep->umidi->usb_protocol_ops->output_packet;
520
521 if (b >= 0xf8) {
522 output_packet(urb, p0 | 0x0f, b, 0, 0);
523 } else if (b >= 0xf0) {
524 switch (b) {
525 case 0xf0:
526 port->data[0] = b;
527 port->state = STATE_SYSEX_1;
528 break;
529 case 0xf1:
530 case 0xf3:
531 port->data[0] = b;
532 port->state = STATE_1PARAM;
533 break;
534 case 0xf2:
535 port->data[0] = b;
536 port->state = STATE_2PARAM_1;
537 break;
538 case 0xf4:
539 case 0xf5:
540 port->state = STATE_UNKNOWN;
541 break;
542 case 0xf6:
543 output_packet(urb, p0 | 0x05, 0xf6, 0, 0);
544 port->state = STATE_UNKNOWN;
545 break;
546 case 0xf7:
547 switch (port->state) {
548 case STATE_SYSEX_0:
549 output_packet(urb, p0 | 0x05, 0xf7, 0, 0);
550 break;
551 case STATE_SYSEX_1:
552 output_packet(urb, p0 | 0x06, port->data[0], 0xf7, 0);
553 break;
554 case STATE_SYSEX_2:
555 output_packet(urb, p0 | 0x07, port->data[0], port->data[1], 0xf7);
556 break;
557 }
558 port->state = STATE_UNKNOWN;
559 break;
560 }
561 } else if (b >= 0x80) {
562 port->data[0] = b;
563 if (b >= 0xc0 && b <= 0xdf)
564 port->state = STATE_1PARAM;
565 else
566 port->state = STATE_2PARAM_1;
567 } else { /* b < 0x80 */
568 switch (port->state) {
569 case STATE_1PARAM:
570 if (port->data[0] < 0xf0) {
571 p0 |= port->data[0] >> 4;
572 } else {
573 p0 |= 0x02;
574 port->state = STATE_UNKNOWN;
575 }
576 output_packet(urb, p0, port->data[0], b, 0);
577 break;
578 case STATE_2PARAM_1:
579 port->data[1] = b;
580 port->state = STATE_2PARAM_2;
581 break;
582 case STATE_2PARAM_2:
583 if (port->data[0] < 0xf0) {
584 p0 |= port->data[0] >> 4;
585 port->state = STATE_2PARAM_1;
586 } else {
587 p0 |= 0x03;
588 port->state = STATE_UNKNOWN;
589 }
590 output_packet(urb, p0, port->data[0], port->data[1], b);
591 break;
592 case STATE_SYSEX_0:
593 port->data[0] = b;
594 port->state = STATE_SYSEX_1;
595 break;
596 case STATE_SYSEX_1:
597 port->data[1] = b;
598 port->state = STATE_SYSEX_2;
599 break;
600 case STATE_SYSEX_2:
601 output_packet(urb, p0 | 0x04, port->data[0], port->data[1], b);
602 port->state = STATE_SYSEX_0;
603 break;
604 }
605 }
606}
607
Clemens Ladisched4affa2009-07-13 13:43:59 +0200608static void snd_usbmidi_standard_output(struct snd_usb_midi_out_endpoint* ep,
609 struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 int p;
612
613 /* FIXME: lower-numbered ports can starve higher-numbered ports */
614 for (p = 0; p < 0x10; ++p) {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100615 struct usbmidi_out_port* port = &ep->ports[p];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (!port->active)
617 continue;
618 while (urb->transfer_buffer_length + 3 < ep->max_transfer) {
619 uint8_t b;
620 if (snd_rawmidi_transmit(port->substream, &b, 1) != 1) {
621 port->active = 0;
622 break;
623 }
624 snd_usbmidi_transmit_byte(port, b, urb);
625 }
626 }
627}
628
629static struct usb_protocol_ops snd_usbmidi_standard_ops = {
630 .input = snd_usbmidi_standard_input,
631 .output = snd_usbmidi_standard_output,
632 .output_packet = snd_usbmidi_output_standard_packet,
633};
634
635static struct usb_protocol_ops snd_usbmidi_midiman_ops = {
636 .input = snd_usbmidi_midiman_input,
Daniel Mack21af7d82010-06-16 17:57:29 +0200637 .output = snd_usbmidi_standard_output,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 .output_packet = snd_usbmidi_output_midiman_packet,
639};
640
Clemens Ladischd05cc10432007-05-07 09:28:53 +0200641static struct usb_protocol_ops snd_usbmidi_maudio_broken_running_status_ops = {
642 .input = snd_usbmidi_maudio_broken_running_status_input,
Daniel Mack21af7d82010-06-16 17:57:29 +0200643 .output = snd_usbmidi_standard_output,
Clemens Ladischd05cc10432007-05-07 09:28:53 +0200644 .output_packet = snd_usbmidi_output_standard_packet,
645};
646
Clemens Ladisch61870ae2007-08-16 08:44:51 +0200647static struct usb_protocol_ops snd_usbmidi_cme_ops = {
648 .input = snd_usbmidi_cme_input,
649 .output = snd_usbmidi_standard_output,
650 .output_packet = snd_usbmidi_output_standard_packet,
651};
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653/*
Krzysztof Foltman4434ade2010-05-20 20:31:10 +0100654 * AKAI MPD16 protocol:
655 *
656 * For control port (endpoint 1):
657 * ==============================
658 * One or more chunks consisting of first byte of (0x10 | msg_len) and then a
659 * SysEx message (msg_len=9 bytes long).
660 *
661 * For data port (endpoint 2):
662 * ===========================
663 * One or more chunks consisting of first byte of (0x20 | msg_len) and then a
664 * MIDI message (msg_len bytes long)
665 *
666 * Messages sent: Active Sense, Note On, Poly Pressure, Control Change.
667 */
668static void snd_usbmidi_akai_input(struct snd_usb_midi_in_endpoint *ep,
669 uint8_t *buffer, int buffer_length)
670{
671 unsigned int pos = 0;
672 unsigned int len = (unsigned int)buffer_length;
673 while (pos < len) {
674 unsigned int port = (buffer[pos] >> 4) - 1;
675 unsigned int msg_len = buffer[pos] & 0x0f;
676 pos++;
677 if (pos + msg_len <= len && port < 2)
678 snd_usbmidi_input_data(ep, 0, &buffer[pos], msg_len);
679 pos += msg_len;
680 }
681}
682
683#define MAX_AKAI_SYSEX_LEN 9
684
685static void snd_usbmidi_akai_output(struct snd_usb_midi_out_endpoint *ep,
686 struct urb *urb)
687{
688 uint8_t *msg;
689 int pos, end, count, buf_end;
690 uint8_t tmp[MAX_AKAI_SYSEX_LEN];
691 struct snd_rawmidi_substream *substream = ep->ports[0].substream;
692
693 if (!ep->ports[0].active)
694 return;
695
696 msg = urb->transfer_buffer + urb->transfer_buffer_length;
697 buf_end = ep->max_transfer - MAX_AKAI_SYSEX_LEN - 1;
698
699 /* only try adding more data when there's space for at least 1 SysEx */
700 while (urb->transfer_buffer_length < buf_end) {
701 count = snd_rawmidi_transmit_peek(substream,
702 tmp, MAX_AKAI_SYSEX_LEN);
703 if (!count) {
704 ep->ports[0].active = 0;
705 return;
706 }
707 /* try to skip non-SysEx data */
708 for (pos = 0; pos < count && tmp[pos] != 0xF0; pos++)
709 ;
710
711 if (pos > 0) {
712 snd_rawmidi_transmit_ack(substream, pos);
713 continue;
714 }
715
716 /* look for the start or end marker */
717 for (end = 1; end < count && tmp[end] < 0xF0; end++)
718 ;
719
720 /* next SysEx started before the end of current one */
721 if (end < count && tmp[end] == 0xF0) {
722 /* it's incomplete - drop it */
723 snd_rawmidi_transmit_ack(substream, end);
724 continue;
725 }
726 /* SysEx complete */
727 if (end < count && tmp[end] == 0xF7) {
728 /* queue it, ack it, and get the next one */
729 count = end + 1;
730 msg[0] = 0x10 | count;
731 memcpy(&msg[1], tmp, count);
732 snd_rawmidi_transmit_ack(substream, count);
733 urb->transfer_buffer_length += count + 1;
734 msg += count + 1;
735 continue;
736 }
737 /* less than 9 bytes and no end byte - wait for more */
738 if (count < MAX_AKAI_SYSEX_LEN) {
739 ep->ports[0].active = 0;
740 return;
741 }
742 /* 9 bytes and no end marker in sight - malformed, skip it */
743 snd_rawmidi_transmit_ack(substream, count);
744 }
745}
746
747static struct usb_protocol_ops snd_usbmidi_akai_ops = {
748 .input = snd_usbmidi_akai_input,
749 .output = snd_usbmidi_akai_output,
750};
751
752/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 * Novation USB MIDI protocol: number of data bytes is in the first byte
754 * (when receiving) (+1!) or in the second byte (when sending); data begins
755 * at the third byte.
756 */
757
Takashi Iwai86e07d32005-11-17 15:08:02 +0100758static void snd_usbmidi_novation_input(struct snd_usb_midi_in_endpoint* ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 uint8_t* buffer, int buffer_length)
760{
761 if (buffer_length < 2 || !buffer[0] || buffer_length < buffer[0] + 1)
762 return;
763 snd_usbmidi_input_data(ep, 0, &buffer[2], buffer[0] - 1);
764}
765
Clemens Ladisched4affa2009-07-13 13:43:59 +0200766static void snd_usbmidi_novation_output(struct snd_usb_midi_out_endpoint* ep,
767 struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 uint8_t* transfer_buffer;
770 int count;
771
772 if (!ep->ports[0].active)
773 return;
Clemens Ladisched4affa2009-07-13 13:43:59 +0200774 transfer_buffer = urb->transfer_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 count = snd_rawmidi_transmit(ep->ports[0].substream,
776 &transfer_buffer[2],
777 ep->max_transfer - 2);
778 if (count < 1) {
779 ep->ports[0].active = 0;
780 return;
781 }
782 transfer_buffer[0] = 0;
783 transfer_buffer[1] = count;
Clemens Ladisched4affa2009-07-13 13:43:59 +0200784 urb->transfer_buffer_length = 2 + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
787static struct usb_protocol_ops snd_usbmidi_novation_ops = {
788 .input = snd_usbmidi_novation_input,
789 .output = snd_usbmidi_novation_output,
790};
791
792/*
Clemens Ladischc7f57212010-10-22 18:20:48 +0200793 * "raw" protocol: just move raw MIDI bytes from/to the endpoint
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 */
795
Takashi Iwai86e07d32005-11-17 15:08:02 +0100796static void snd_usbmidi_raw_input(struct snd_usb_midi_in_endpoint* ep,
Clemens Ladisch6155aff2005-07-04 09:20:42 +0200797 uint8_t* buffer, int buffer_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
799 snd_usbmidi_input_data(ep, 0, buffer, buffer_length);
800}
801
Clemens Ladisched4affa2009-07-13 13:43:59 +0200802static void snd_usbmidi_raw_output(struct snd_usb_midi_out_endpoint* ep,
803 struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
805 int count;
806
807 if (!ep->ports[0].active)
808 return;
809 count = snd_rawmidi_transmit(ep->ports[0].substream,
Clemens Ladisched4affa2009-07-13 13:43:59 +0200810 urb->transfer_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 ep->max_transfer);
812 if (count < 1) {
813 ep->ports[0].active = 0;
814 return;
815 }
Clemens Ladisched4affa2009-07-13 13:43:59 +0200816 urb->transfer_buffer_length = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
Clemens Ladisch6155aff2005-07-04 09:20:42 +0200819static struct usb_protocol_ops snd_usbmidi_raw_ops = {
820 .input = snd_usbmidi_raw_input,
821 .output = snd_usbmidi_raw_output,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822};
823
Kristian Amlie1ef0e0a2011-08-26 13:19:49 +0200824/*
825 * FTDI protocol: raw MIDI bytes, but input packets have two modem status bytes.
826 */
827
828static void snd_usbmidi_ftdi_input(struct snd_usb_midi_in_endpoint* ep,
829 uint8_t* buffer, int buffer_length)
830{
831 if (buffer_length > 2)
832 snd_usbmidi_input_data(ep, 0, buffer + 2, buffer_length - 2);
833}
834
835static struct usb_protocol_ops snd_usbmidi_ftdi_ops = {
836 .input = snd_usbmidi_ftdi_input,
837 .output = snd_usbmidi_raw_output,
838};
839
Karsten Wiese030a07e2008-07-30 15:13:29 +0200840static void snd_usbmidi_us122l_input(struct snd_usb_midi_in_endpoint *ep,
841 uint8_t *buffer, int buffer_length)
842{
843 if (buffer_length != 9)
844 return;
845 buffer_length = 8;
846 while (buffer_length && buffer[buffer_length - 1] == 0xFD)
847 buffer_length--;
848 if (buffer_length)
849 snd_usbmidi_input_data(ep, 0, buffer, buffer_length);
850}
851
Clemens Ladisched4affa2009-07-13 13:43:59 +0200852static void snd_usbmidi_us122l_output(struct snd_usb_midi_out_endpoint *ep,
853 struct urb *urb)
Karsten Wiese030a07e2008-07-30 15:13:29 +0200854{
855 int count;
856
857 if (!ep->ports[0].active)
858 return;
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700859 switch (snd_usb_get_speed(ep->umidi->dev)) {
860 case USB_SPEED_HIGH:
861 case USB_SPEED_SUPER:
862 count = 1;
863 break;
864 default:
865 count = 2;
866 }
Karsten Wiese030a07e2008-07-30 15:13:29 +0200867 count = snd_rawmidi_transmit(ep->ports[0].substream,
Clemens Ladisched4affa2009-07-13 13:43:59 +0200868 urb->transfer_buffer,
Karsten Wiese030a07e2008-07-30 15:13:29 +0200869 count);
870 if (count < 1) {
871 ep->ports[0].active = 0;
872 return;
873 }
874
Karsten Wiese921eebd2011-01-03 02:41:58 +0100875 memset(urb->transfer_buffer + count, 0xFD, ep->max_transfer - count);
876 urb->transfer_buffer_length = ep->max_transfer;
Karsten Wiese030a07e2008-07-30 15:13:29 +0200877}
878
879static struct usb_protocol_ops snd_usbmidi_122l_ops = {
880 .input = snd_usbmidi_us122l_input,
881 .output = snd_usbmidi_us122l_output,
882};
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884/*
885 * Emagic USB MIDI protocol: raw MIDI with "F5 xx" port switching.
886 */
887
Takashi Iwai86e07d32005-11-17 15:08:02 +0100888static void snd_usbmidi_emagic_init_out(struct snd_usb_midi_out_endpoint* ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
890 static const u8 init_data[] = {
891 /* initialization magic: "get version" */
892 0xf0,
893 0x00, 0x20, 0x31, /* Emagic */
894 0x64, /* Unitor8 */
895 0x0b, /* version number request */
896 0x00, /* command version */
897 0x00, /* EEPROM, box 0 */
898 0xf7
899 };
900 send_bulk_static_data(ep, init_data, sizeof(init_data));
901 /* while we're at it, pour on more magic */
902 send_bulk_static_data(ep, init_data, sizeof(init_data));
903}
904
Takashi Iwai86e07d32005-11-17 15:08:02 +0100905static void snd_usbmidi_emagic_finish_out(struct snd_usb_midi_out_endpoint* ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
907 static const u8 finish_data[] = {
908 /* switch to patch mode with last preset */
909 0xf0,
910 0x00, 0x20, 0x31, /* Emagic */
911 0x64, /* Unitor8 */
912 0x10, /* patch switch command */
913 0x00, /* command version */
914 0x7f, /* to all boxes */
915 0x40, /* last preset in EEPROM */
916 0xf7
917 };
918 send_bulk_static_data(ep, finish_data, sizeof(finish_data));
919}
920
Takashi Iwai86e07d32005-11-17 15:08:02 +0100921static void snd_usbmidi_emagic_input(struct snd_usb_midi_in_endpoint* ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 uint8_t* buffer, int buffer_length)
923{
Clemens Ladischc347e9f2005-08-25 11:10:05 +0200924 int i;
925
926 /* FF indicates end of valid data */
927 for (i = 0; i < buffer_length; ++i)
928 if (buffer[i] == 0xff) {
929 buffer_length = i;
930 break;
931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 /* handle F5 at end of last buffer */
934 if (ep->seen_f5)
935 goto switch_port;
936
937 while (buffer_length > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 /* determine size of data until next F5 */
939 for (i = 0; i < buffer_length; ++i)
940 if (buffer[i] == 0xf5)
941 break;
942 snd_usbmidi_input_data(ep, ep->current_port, buffer, i);
943 buffer += i;
944 buffer_length -= i;
945
946 if (buffer_length <= 0)
947 break;
948 /* assert(buffer[0] == 0xf5); */
949 ep->seen_f5 = 1;
950 ++buffer;
951 --buffer_length;
952
953 switch_port:
954 if (buffer_length <= 0)
955 break;
956 if (buffer[0] < 0x80) {
957 ep->current_port = (buffer[0] - 1) & 15;
958 ++buffer;
959 --buffer_length;
960 }
961 ep->seen_f5 = 0;
962 }
963}
964
Clemens Ladisched4affa2009-07-13 13:43:59 +0200965static void snd_usbmidi_emagic_output(struct snd_usb_midi_out_endpoint* ep,
966 struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 int port0 = ep->current_port;
Clemens Ladisched4affa2009-07-13 13:43:59 +0200969 uint8_t* buf = urb->transfer_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 int buf_free = ep->max_transfer;
971 int length, i;
972
973 for (i = 0; i < 0x10; ++i) {
974 /* round-robin, starting at the last current port */
975 int portnum = (port0 + i) & 15;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100976 struct usbmidi_out_port* port = &ep->ports[portnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 if (!port->active)
979 continue;
980 if (snd_rawmidi_transmit_peek(port->substream, buf, 1) != 1) {
981 port->active = 0;
982 continue;
983 }
984
985 if (portnum != ep->current_port) {
986 if (buf_free < 2)
987 break;
988 ep->current_port = portnum;
989 buf[0] = 0xf5;
990 buf[1] = (portnum + 1) & 15;
991 buf += 2;
992 buf_free -= 2;
993 }
994
995 if (buf_free < 1)
996 break;
997 length = snd_rawmidi_transmit(port->substream, buf, buf_free);
998 if (length > 0) {
999 buf += length;
1000 buf_free -= length;
1001 if (buf_free < 1)
1002 break;
1003 }
1004 }
Clemens Ladischc347e9f2005-08-25 11:10:05 +02001005 if (buf_free < ep->max_transfer && buf_free > 0) {
1006 *buf = 0xff;
1007 --buf_free;
1008 }
Clemens Ladisched4affa2009-07-13 13:43:59 +02001009 urb->transfer_buffer_length = ep->max_transfer - buf_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010}
1011
1012static struct usb_protocol_ops snd_usbmidi_emagic_ops = {
1013 .input = snd_usbmidi_emagic_input,
1014 .output = snd_usbmidi_emagic_output,
1015 .init_out_endpoint = snd_usbmidi_emagic_init_out,
1016 .finish_out_endpoint = snd_usbmidi_emagic_finish_out,
1017};
1018
1019
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001020static void update_roland_altsetting(struct snd_usb_midi* umidi)
1021{
1022 struct usb_interface *intf;
1023 struct usb_host_interface *hostif;
1024 struct usb_interface_descriptor *intfd;
1025 int is_light_load;
1026
1027 intf = umidi->iface;
1028 is_light_load = intf->cur_altsetting != intf->altsetting;
1029 if (umidi->roland_load_ctl->private_value == is_light_load)
1030 return;
1031 hostif = &intf->altsetting[umidi->roland_load_ctl->private_value];
1032 intfd = get_iface_desc(hostif);
1033 snd_usbmidi_input_stop(&umidi->list);
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001034 usb_set_interface(umidi->dev, intfd->bInterfaceNumber,
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001035 intfd->bAlternateSetting);
1036 snd_usbmidi_input_start(&umidi->list);
1037}
1038
Takashi Iwai394c9d82012-12-03 11:30:50 +01001039static int substream_open(struct snd_rawmidi_substream *substream, int dir,
1040 int open)
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001041{
1042 struct snd_usb_midi* umidi = substream->rmidi->private_data;
1043 struct snd_kcontrol *ctl;
1044
Takashi Iwai2ca77192012-12-03 11:12:46 +01001045 down_read(&umidi->disc_rwsem);
1046 if (umidi->disconnected) {
1047 up_read(&umidi->disc_rwsem);
Takashi Iwai394c9d82012-12-03 11:30:50 +01001048 return open ? -ENODEV : 0;
Takashi Iwai2ca77192012-12-03 11:12:46 +01001049 }
1050
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001051 mutex_lock(&umidi->mutex);
1052 if (open) {
Takashi Iwai394c9d82012-12-03 11:30:50 +01001053 if (!umidi->opened[0] && !umidi->opened[1]) {
Takashi Iwai394c9d82012-12-03 11:30:50 +01001054 if (umidi->roland_load_ctl) {
1055 ctl = umidi->roland_load_ctl;
1056 ctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
1057 snd_ctl_notify(umidi->card,
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001058 SNDRV_CTL_EVENT_MASK_INFO, &ctl->id);
Takashi Iwai394c9d82012-12-03 11:30:50 +01001059 update_roland_altsetting(umidi);
1060 }
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001061 }
Takashi Iwai394c9d82012-12-03 11:30:50 +01001062 umidi->opened[dir]++;
1063 if (umidi->opened[1])
1064 snd_usbmidi_input_start(&umidi->list);
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001065 } else {
Takashi Iwai394c9d82012-12-03 11:30:50 +01001066 umidi->opened[dir]--;
1067 if (!umidi->opened[1])
1068 snd_usbmidi_input_stop(&umidi->list);
1069 if (!umidi->opened[0] && !umidi->opened[1]) {
1070 if (umidi->roland_load_ctl) {
1071 ctl = umidi->roland_load_ctl;
1072 ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
1073 snd_ctl_notify(umidi->card,
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001074 SNDRV_CTL_EVENT_MASK_INFO, &ctl->id);
Takashi Iwai394c9d82012-12-03 11:30:50 +01001075 }
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001076 }
1077 }
1078 mutex_unlock(&umidi->mutex);
Takashi Iwai2ca77192012-12-03 11:12:46 +01001079 up_read(&umidi->disc_rwsem);
Takashi Iwai394c9d82012-12-03 11:30:50 +01001080 return 0;
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001081}
1082
Takashi Iwai86e07d32005-11-17 15:08:02 +01001083static int snd_usbmidi_output_open(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001085 struct snd_usb_midi* umidi = substream->rmidi->private_data;
1086 struct usbmidi_out_port* port = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 int i, j;
1088
1089 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i)
1090 if (umidi->endpoints[i].out)
1091 for (j = 0; j < 0x10; ++j)
1092 if (umidi->endpoints[i].out->ports[j].substream == substream) {
1093 port = &umidi->endpoints[i].out->ports[j];
1094 break;
1095 }
1096 if (!port) {
1097 snd_BUG();
1098 return -ENXIO;
1099 }
Takashi Iwai2ca77192012-12-03 11:12:46 +01001100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 substream->runtime->private_data = port;
1102 port->state = STATE_UNKNOWN;
Takashi Iwai394c9d82012-12-03 11:30:50 +01001103 return substream_open(substream, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
Takashi Iwai86e07d32005-11-17 15:08:02 +01001106static int snd_usbmidi_output_close(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Takashi Iwai394c9d82012-12-03 11:30:50 +01001108 return substream_open(substream, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
Takashi Iwai86e07d32005-11-17 15:08:02 +01001111static void snd_usbmidi_output_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001113 struct usbmidi_out_port* port = (struct usbmidi_out_port*)substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 port->active = up;
1116 if (up) {
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001117 if (port->ep->umidi->disconnected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 /* gobble up remaining bytes to prevent wait in
1119 * snd_rawmidi_drain_output */
1120 while (!snd_rawmidi_transmit_empty(substream))
1121 snd_rawmidi_transmit_ack(substream, 1);
1122 return;
1123 }
Takashi Iwai1f041282008-12-18 12:17:55 +01001124 tasklet_schedule(&port->ep->tasklet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126}
1127
Clemens Ladischa65dd992009-07-13 13:48:36 +02001128static void snd_usbmidi_output_drain(struct snd_rawmidi_substream *substream)
1129{
1130 struct usbmidi_out_port* port = substream->runtime->private_data;
1131 struct snd_usb_midi_out_endpoint *ep = port->ep;
1132 unsigned int drain_urbs;
1133 DEFINE_WAIT(wait);
1134 long timeout = msecs_to_jiffies(50);
1135
Takashi Iwai29aac002010-04-10 21:27:23 +02001136 if (ep->umidi->disconnected)
1137 return;
Clemens Ladischa65dd992009-07-13 13:48:36 +02001138 /*
1139 * The substream buffer is empty, but some data might still be in the
1140 * currently active URBs, so we have to wait for those to complete.
1141 */
1142 spin_lock_irq(&ep->buffer_lock);
1143 drain_urbs = ep->active_urbs;
1144 if (drain_urbs) {
1145 ep->drain_urbs |= drain_urbs;
1146 do {
1147 prepare_to_wait(&ep->drain_wait, &wait,
1148 TASK_UNINTERRUPTIBLE);
1149 spin_unlock_irq(&ep->buffer_lock);
1150 timeout = schedule_timeout(timeout);
1151 spin_lock_irq(&ep->buffer_lock);
1152 drain_urbs &= ep->drain_urbs;
1153 } while (drain_urbs && timeout);
1154 finish_wait(&ep->drain_wait, &wait);
1155 }
1156 spin_unlock_irq(&ep->buffer_lock);
1157}
1158
Takashi Iwai86e07d32005-11-17 15:08:02 +01001159static int snd_usbmidi_input_open(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Takashi Iwai394c9d82012-12-03 11:30:50 +01001161 return substream_open(substream, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
Takashi Iwai86e07d32005-11-17 15:08:02 +01001164static int snd_usbmidi_input_close(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
Takashi Iwai394c9d82012-12-03 11:30:50 +01001166 return substream_open(substream, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
Takashi Iwai86e07d32005-11-17 15:08:02 +01001169static void snd_usbmidi_input_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001171 struct snd_usb_midi* umidi = substream->rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 if (up)
1174 set_bit(substream->number, &umidi->input_triggered);
1175 else
1176 clear_bit(substream->number, &umidi->input_triggered);
1177}
1178
Takashi Iwai86e07d32005-11-17 15:08:02 +01001179static struct snd_rawmidi_ops snd_usbmidi_output_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 .open = snd_usbmidi_output_open,
1181 .close = snd_usbmidi_output_close,
1182 .trigger = snd_usbmidi_output_trigger,
Clemens Ladischa65dd992009-07-13 13:48:36 +02001183 .drain = snd_usbmidi_output_drain,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184};
1185
Takashi Iwai86e07d32005-11-17 15:08:02 +01001186static struct snd_rawmidi_ops snd_usbmidi_input_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 .open = snd_usbmidi_input_open,
1188 .close = snd_usbmidi_input_close,
1189 .trigger = snd_usbmidi_input_trigger
1190};
1191
Clemens Ladisched4affa2009-07-13 13:43:59 +02001192static void free_urb_and_buffer(struct snd_usb_midi *umidi, struct urb *urb,
1193 unsigned int buffer_length)
1194{
Daniel Mack997ea582010-04-12 13:17:25 +02001195 usb_free_coherent(umidi->dev, buffer_length,
1196 urb->transfer_buffer, urb->transfer_dma);
Clemens Ladisched4affa2009-07-13 13:43:59 +02001197 usb_free_urb(urb);
1198}
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200/*
1201 * Frees an input endpoint.
1202 * May be called when ep hasn't been initialized completely.
1203 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001204static void snd_usbmidi_in_endpoint_delete(struct snd_usb_midi_in_endpoint* ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Clemens Ladisch4773d1f2009-07-13 13:40:36 +02001206 unsigned int i;
1207
Clemens Ladisched4affa2009-07-13 13:43:59 +02001208 for (i = 0; i < INPUT_URBS; ++i)
1209 if (ep->urbs[i])
1210 free_urb_and_buffer(ep->umidi, ep->urbs[i],
1211 ep->urbs[i]->transfer_buffer_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 kfree(ep);
1213}
1214
1215/*
1216 * Creates an input endpoint.
1217 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001218static int snd_usbmidi_in_endpoint_create(struct snd_usb_midi* umidi,
1219 struct snd_usb_midi_endpoint_info* ep_info,
1220 struct snd_usb_midi_endpoint* rep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001222 struct snd_usb_midi_in_endpoint* ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 void* buffer;
1224 unsigned int pipe;
1225 int length;
Clemens Ladisch4773d1f2009-07-13 13:40:36 +02001226 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 rep->in = NULL;
Takashi Iwai561b2202005-09-09 14:22:34 +02001229 ep = kzalloc(sizeof(*ep), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 if (!ep)
1231 return -ENOMEM;
1232 ep->umidi = umidi;
1233
Clemens Ladisch4773d1f2009-07-13 13:40:36 +02001234 for (i = 0; i < INPUT_URBS; ++i) {
1235 ep->urbs[i] = usb_alloc_urb(0, GFP_KERNEL);
1236 if (!ep->urbs[i]) {
1237 snd_usbmidi_in_endpoint_delete(ep);
1238 return -ENOMEM;
1239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
1241 if (ep_info->in_interval)
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001242 pipe = usb_rcvintpipe(umidi->dev, ep_info->in_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 else
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001244 pipe = usb_rcvbulkpipe(umidi->dev, ep_info->in_ep);
1245 length = usb_maxpacket(umidi->dev, pipe, 0);
Clemens Ladisch4773d1f2009-07-13 13:40:36 +02001246 for (i = 0; i < INPUT_URBS; ++i) {
Daniel Mack997ea582010-04-12 13:17:25 +02001247 buffer = usb_alloc_coherent(umidi->dev, length, GFP_KERNEL,
1248 &ep->urbs[i]->transfer_dma);
Clemens Ladisch4773d1f2009-07-13 13:40:36 +02001249 if (!buffer) {
1250 snd_usbmidi_in_endpoint_delete(ep);
1251 return -ENOMEM;
1252 }
1253 if (ep_info->in_interval)
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001254 usb_fill_int_urb(ep->urbs[i], umidi->dev,
Clemens Ladisch4773d1f2009-07-13 13:40:36 +02001255 pipe, buffer, length,
1256 snd_usbmidi_in_urb_complete,
1257 ep, ep_info->in_interval);
1258 else
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001259 usb_fill_bulk_urb(ep->urbs[i], umidi->dev,
Clemens Ladisch4773d1f2009-07-13 13:40:36 +02001260 pipe, buffer, length,
1261 snd_usbmidi_in_urb_complete, ep);
1262 ep->urbs[i]->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 rep->in = ep;
1266 return 0;
1267}
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269/*
1270 * Frees an output endpoint.
1271 * May be called when ep hasn't been initialized completely.
1272 */
Takashi Iwai29aac002010-04-10 21:27:23 +02001273static void snd_usbmidi_out_endpoint_clear(struct snd_usb_midi_out_endpoint *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
Clemens Ladisched4affa2009-07-13 13:43:59 +02001275 unsigned int i;
1276
1277 for (i = 0; i < OUTPUT_URBS; ++i)
Takashi Iwai29aac002010-04-10 21:27:23 +02001278 if (ep->urbs[i].urb) {
Clemens Ladisched4affa2009-07-13 13:43:59 +02001279 free_urb_and_buffer(ep->umidi, ep->urbs[i].urb,
1280 ep->max_transfer);
Takashi Iwai29aac002010-04-10 21:27:23 +02001281 ep->urbs[i].urb = NULL;
1282 }
1283}
1284
1285static void snd_usbmidi_out_endpoint_delete(struct snd_usb_midi_out_endpoint *ep)
1286{
1287 snd_usbmidi_out_endpoint_clear(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 kfree(ep);
1289}
1290
1291/*
1292 * Creates an output endpoint, and initializes output ports.
1293 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001294static int snd_usbmidi_out_endpoint_create(struct snd_usb_midi* umidi,
1295 struct snd_usb_midi_endpoint_info* ep_info,
Daniel Mack21af7d82010-06-16 17:57:29 +02001296 struct snd_usb_midi_endpoint* rep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001298 struct snd_usb_midi_out_endpoint* ep;
Clemens Ladisched4affa2009-07-13 13:43:59 +02001299 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 unsigned int pipe;
1301 void* buffer;
1302
1303 rep->out = NULL;
Takashi Iwai561b2202005-09-09 14:22:34 +02001304 ep = kzalloc(sizeof(*ep), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (!ep)
1306 return -ENOMEM;
1307 ep->umidi = umidi;
1308
Clemens Ladisched4affa2009-07-13 13:43:59 +02001309 for (i = 0; i < OUTPUT_URBS; ++i) {
1310 ep->urbs[i].urb = usb_alloc_urb(0, GFP_KERNEL);
1311 if (!ep->urbs[i].urb) {
1312 snd_usbmidi_out_endpoint_delete(ep);
1313 return -ENOMEM;
1314 }
1315 ep->urbs[i].ep = ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
Clemens Ladischa6a712a2007-08-21 08:56:08 +02001317 if (ep_info->out_interval)
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001318 pipe = usb_sndintpipe(umidi->dev, ep_info->out_ep);
Clemens Ladischa6a712a2007-08-21 08:56:08 +02001319 else
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001320 pipe = usb_sndbulkpipe(umidi->dev, ep_info->out_ep);
Clemens Ladischf167e1d2010-02-15 08:55:28 +01001321 switch (umidi->usb_id) {
1322 default:
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001323 ep->max_transfer = usb_maxpacket(umidi->dev, pipe, 1);
Clemens Ladischf167e1d2010-02-15 08:55:28 +01001324 break;
1325 /*
1326 * Various chips declare a packet size larger than 4 bytes, but
1327 * do not actually work with larger packets:
1328 */
1329 case USB_ID(0x0a92, 0x1020): /* ESI M4U */
1330 case USB_ID(0x1430, 0x474b): /* RedOctane GH MIDI INTERFACE */
1331 case USB_ID(0x15ca, 0x0101): /* Textech USB Midi Cable */
1332 case USB_ID(0x15ca, 0x1806): /* Textech USB Midi Cable */
1333 case USB_ID(0x1a86, 0x752d): /* QinHeng CH345 "USB2.0-MIDI" */
Tarek Soliman49c039f2011-04-04 09:23:53 -05001334 case USB_ID(0xfc08, 0x0101): /* Unknown vendor Cable */
Clemens Ladischf167e1d2010-02-15 08:55:28 +01001335 ep->max_transfer = 4;
1336 break;
Karsten Wiese921eebd2011-01-03 02:41:58 +01001337 /*
1338 * Some devices only work with 9 bytes packet size:
1339 */
1340 case USB_ID(0x0644, 0x800E): /* Tascam US-122L */
1341 case USB_ID(0x0644, 0x800F): /* Tascam US-144 */
1342 ep->max_transfer = 9;
1343 break;
Clemens Ladischf167e1d2010-02-15 08:55:28 +01001344 }
Clemens Ladisched4affa2009-07-13 13:43:59 +02001345 for (i = 0; i < OUTPUT_URBS; ++i) {
Daniel Mack997ea582010-04-12 13:17:25 +02001346 buffer = usb_alloc_coherent(umidi->dev,
1347 ep->max_transfer, GFP_KERNEL,
1348 &ep->urbs[i].urb->transfer_dma);
Clemens Ladisched4affa2009-07-13 13:43:59 +02001349 if (!buffer) {
1350 snd_usbmidi_out_endpoint_delete(ep);
1351 return -ENOMEM;
1352 }
1353 if (ep_info->out_interval)
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001354 usb_fill_int_urb(ep->urbs[i].urb, umidi->dev,
Clemens Ladisched4affa2009-07-13 13:43:59 +02001355 pipe, buffer, ep->max_transfer,
1356 snd_usbmidi_out_urb_complete,
1357 &ep->urbs[i], ep_info->out_interval);
1358 else
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001359 usb_fill_bulk_urb(ep->urbs[i].urb, umidi->dev,
Clemens Ladisched4affa2009-07-13 13:43:59 +02001360 pipe, buffer, ep->max_transfer,
1361 snd_usbmidi_out_urb_complete,
1362 &ep->urbs[i]);
1363 ep->urbs[i].urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 spin_lock_init(&ep->buffer_lock);
1367 tasklet_init(&ep->tasklet, snd_usbmidi_out_tasklet, (unsigned long)ep);
Clemens Ladischa65dd992009-07-13 13:48:36 +02001368 init_waitqueue_head(&ep->drain_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 for (i = 0; i < 0x10; ++i)
1371 if (ep_info->out_cables & (1 << i)) {
1372 ep->ports[i].ep = ep;
1373 ep->ports[i].cable = i << 4;
1374 }
1375
1376 if (umidi->usb_protocol_ops->init_out_endpoint)
1377 umidi->usb_protocol_ops->init_out_endpoint(ep);
1378
1379 rep->out = ep;
1380 return 0;
1381}
1382
1383/*
1384 * Frees everything.
1385 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001386static void snd_usbmidi_free(struct snd_usb_midi* umidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
1388 int i;
1389
1390 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001391 struct snd_usb_midi_endpoint* ep = &umidi->endpoints[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (ep->out)
1393 snd_usbmidi_out_endpoint_delete(ep->out);
1394 if (ep->in)
1395 snd_usbmidi_in_endpoint_delete(ep->in);
1396 }
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001397 mutex_destroy(&umidi->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 kfree(umidi);
1399}
1400
1401/*
1402 * Unlinks all URBs (must be done before the usb_device is deleted).
1403 */
Clemens Ladischee733392005-04-25 10:34:13 +02001404void snd_usbmidi_disconnect(struct list_head* p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001406 struct snd_usb_midi* umidi;
Clemens Ladisch4773d1f2009-07-13 13:40:36 +02001407 unsigned int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Takashi Iwai86e07d32005-11-17 15:08:02 +01001409 umidi = list_entry(p, struct snd_usb_midi, list);
Takashi Iwaic0792e02008-02-22 18:34:44 +01001410 /*
1411 * an URB's completion handler may start the timer and
1412 * a timer may submit an URB. To reliably break the cycle
1413 * a flag under lock must be used
1414 */
Takashi Iwai2ca77192012-12-03 11:12:46 +01001415 down_write(&umidi->disc_rwsem);
Takashi Iwaic0792e02008-02-22 18:34:44 +01001416 spin_lock_irq(&umidi->disc_lock);
1417 umidi->disconnected = 1;
1418 spin_unlock_irq(&umidi->disc_lock);
Takashi Iwai2ca77192012-12-03 11:12:46 +01001419 up_write(&umidi->disc_rwsem);
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001422 struct snd_usb_midi_endpoint* ep = &umidi->endpoints[i];
Clemens Ladischc8846972005-08-02 15:26:52 +02001423 if (ep->out)
1424 tasklet_kill(&ep->out->tasklet);
Clemens Ladisched4affa2009-07-13 13:43:59 +02001425 if (ep->out) {
1426 for (j = 0; j < OUTPUT_URBS; ++j)
1427 usb_kill_urb(ep->out->urbs[j].urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 if (umidi->usb_protocol_ops->finish_out_endpoint)
1429 umidi->usb_protocol_ops->finish_out_endpoint(ep->out);
Takashi Iwai29aac002010-04-10 21:27:23 +02001430 ep->out->active_urbs = 0;
1431 if (ep->out->drain_urbs) {
1432 ep->out->drain_urbs = 0;
1433 wake_up(&ep->out->drain_wait);
1434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
Mariusz Kozlowskif5e135a2006-11-08 15:37:00 +01001436 if (ep->in)
Clemens Ladisch4773d1f2009-07-13 13:40:36 +02001437 for (j = 0; j < INPUT_URBS; ++j)
1438 usb_kill_urb(ep->in->urbs[j]);
Takashi Iwai7a17daa2008-10-02 14:50:22 +02001439 /* free endpoints here; later call can result in Oops */
Takashi Iwai29aac002010-04-10 21:27:23 +02001440 if (ep->out)
1441 snd_usbmidi_out_endpoint_clear(ep->out);
Takashi Iwai7a17daa2008-10-02 14:50:22 +02001442 if (ep->in) {
1443 snd_usbmidi_in_endpoint_delete(ep->in);
1444 ep->in = NULL;
1445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
Takashi Iwaic0792e02008-02-22 18:34:44 +01001447 del_timer_sync(&umidi->error_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
Takashi Iwai86e07d32005-11-17 15:08:02 +01001450static void snd_usbmidi_rawmidi_free(struct snd_rawmidi *rmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001452 struct snd_usb_midi* umidi = rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 snd_usbmidi_free(umidi);
1454}
1455
Takashi Iwai86e07d32005-11-17 15:08:02 +01001456static struct snd_rawmidi_substream *snd_usbmidi_find_substream(struct snd_usb_midi* umidi,
Daniel Mack21af7d82010-06-16 17:57:29 +02001457 int stream, int number)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
1459 struct list_head* list;
1460
1461 list_for_each(list, &umidi->rmidi->streams[stream].substreams) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001462 struct snd_rawmidi_substream *substream = list_entry(list, struct snd_rawmidi_substream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 if (substream->number == number)
1464 return substream;
1465 }
1466 return NULL;
1467}
1468
1469/*
1470 * This list specifies names for ports that do not fit into the standard
1471 * "(product) MIDI (n)" schema because they aren't external MIDI ports,
1472 * such as internal control or synthesizer ports.
1473 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001474static struct port_info {
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001475 u32 id;
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001476 short int port;
1477 short int voices;
1478 const char *name;
1479 unsigned int seq_flags;
1480} snd_usbmidi_port_info[] = {
1481#define PORT_INFO(vendor, product, num, name_, voices_, flags) \
1482 { .id = USB_ID(vendor, product), \
1483 .port = num, .voices = voices_, \
1484 .name = name_, .seq_flags = flags }
1485#define EXTERNAL_PORT(vendor, product, num, name) \
1486 PORT_INFO(vendor, product, num, name, 0, \
1487 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC | \
1488 SNDRV_SEQ_PORT_TYPE_HARDWARE | \
1489 SNDRV_SEQ_PORT_TYPE_PORT)
1490#define CONTROL_PORT(vendor, product, num, name) \
1491 PORT_INFO(vendor, product, num, name, 0, \
1492 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC | \
1493 SNDRV_SEQ_PORT_TYPE_HARDWARE)
1494#define ROLAND_SYNTH_PORT(vendor, product, num, name, voices) \
1495 PORT_INFO(vendor, product, num, name, voices, \
1496 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC | \
1497 SNDRV_SEQ_PORT_TYPE_MIDI_GM | \
1498 SNDRV_SEQ_PORT_TYPE_MIDI_GM2 | \
1499 SNDRV_SEQ_PORT_TYPE_MIDI_GS | \
1500 SNDRV_SEQ_PORT_TYPE_MIDI_XG | \
1501 SNDRV_SEQ_PORT_TYPE_HARDWARE | \
1502 SNDRV_SEQ_PORT_TYPE_SYNTHESIZER)
1503#define SOUNDCANVAS_PORT(vendor, product, num, name, voices) \
1504 PORT_INFO(vendor, product, num, name, voices, \
1505 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC | \
1506 SNDRV_SEQ_PORT_TYPE_MIDI_GM | \
1507 SNDRV_SEQ_PORT_TYPE_MIDI_GM2 | \
1508 SNDRV_SEQ_PORT_TYPE_MIDI_GS | \
1509 SNDRV_SEQ_PORT_TYPE_MIDI_XG | \
1510 SNDRV_SEQ_PORT_TYPE_MIDI_MT32 | \
1511 SNDRV_SEQ_PORT_TYPE_HARDWARE | \
1512 SNDRV_SEQ_PORT_TYPE_SYNTHESIZER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 /* Roland UA-100 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001514 CONTROL_PORT(0x0582, 0x0000, 2, "%s Control"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 /* Roland SC-8850 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001516 SOUNDCANVAS_PORT(0x0582, 0x0003, 0, "%s Part A", 128),
1517 SOUNDCANVAS_PORT(0x0582, 0x0003, 1, "%s Part B", 128),
1518 SOUNDCANVAS_PORT(0x0582, 0x0003, 2, "%s Part C", 128),
1519 SOUNDCANVAS_PORT(0x0582, 0x0003, 3, "%s Part D", 128),
1520 EXTERNAL_PORT(0x0582, 0x0003, 4, "%s MIDI 1"),
1521 EXTERNAL_PORT(0x0582, 0x0003, 5, "%s MIDI 2"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 /* Roland U-8 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001523 EXTERNAL_PORT(0x0582, 0x0004, 0, "%s MIDI"),
1524 CONTROL_PORT(0x0582, 0x0004, 1, "%s Control"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 /* Roland SC-8820 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001526 SOUNDCANVAS_PORT(0x0582, 0x0007, 0, "%s Part A", 64),
1527 SOUNDCANVAS_PORT(0x0582, 0x0007, 1, "%s Part B", 64),
1528 EXTERNAL_PORT(0x0582, 0x0007, 2, "%s MIDI"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 /* Roland SK-500 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001530 SOUNDCANVAS_PORT(0x0582, 0x000b, 0, "%s Part A", 64),
1531 SOUNDCANVAS_PORT(0x0582, 0x000b, 1, "%s Part B", 64),
1532 EXTERNAL_PORT(0x0582, 0x000b, 2, "%s MIDI"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 /* Roland SC-D70 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001534 SOUNDCANVAS_PORT(0x0582, 0x000c, 0, "%s Part A", 64),
1535 SOUNDCANVAS_PORT(0x0582, 0x000c, 1, "%s Part B", 64),
1536 EXTERNAL_PORT(0x0582, 0x000c, 2, "%s MIDI"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 /* Edirol UM-880 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001538 CONTROL_PORT(0x0582, 0x0014, 8, "%s Control"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 /* Edirol SD-90 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001540 ROLAND_SYNTH_PORT(0x0582, 0x0016, 0, "%s Part A", 128),
1541 ROLAND_SYNTH_PORT(0x0582, 0x0016, 1, "%s Part B", 128),
1542 EXTERNAL_PORT(0x0582, 0x0016, 2, "%s MIDI 1"),
1543 EXTERNAL_PORT(0x0582, 0x0016, 3, "%s MIDI 2"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 /* Edirol UM-550 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001545 CONTROL_PORT(0x0582, 0x0023, 5, "%s Control"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 /* Edirol SD-20 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001547 ROLAND_SYNTH_PORT(0x0582, 0x0027, 0, "%s Part A", 64),
1548 ROLAND_SYNTH_PORT(0x0582, 0x0027, 1, "%s Part B", 64),
1549 EXTERNAL_PORT(0x0582, 0x0027, 2, "%s MIDI"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 /* Edirol SD-80 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001551 ROLAND_SYNTH_PORT(0x0582, 0x0029, 0, "%s Part A", 128),
1552 ROLAND_SYNTH_PORT(0x0582, 0x0029, 1, "%s Part B", 128),
1553 EXTERNAL_PORT(0x0582, 0x0029, 2, "%s MIDI 1"),
1554 EXTERNAL_PORT(0x0582, 0x0029, 3, "%s MIDI 2"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 /* Edirol UA-700 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001556 EXTERNAL_PORT(0x0582, 0x002b, 0, "%s MIDI"),
1557 CONTROL_PORT(0x0582, 0x002b, 1, "%s Control"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 /* Roland VariOS */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001559 EXTERNAL_PORT(0x0582, 0x002f, 0, "%s MIDI"),
1560 EXTERNAL_PORT(0x0582, 0x002f, 1, "%s External MIDI"),
1561 EXTERNAL_PORT(0x0582, 0x002f, 2, "%s Sync"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 /* Edirol PCR */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001563 EXTERNAL_PORT(0x0582, 0x0033, 0, "%s MIDI"),
1564 EXTERNAL_PORT(0x0582, 0x0033, 1, "%s 1"),
1565 EXTERNAL_PORT(0x0582, 0x0033, 2, "%s 2"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 /* BOSS GS-10 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001567 EXTERNAL_PORT(0x0582, 0x003b, 0, "%s MIDI"),
1568 CONTROL_PORT(0x0582, 0x003b, 1, "%s Control"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 /* Edirol UA-1000 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001570 EXTERNAL_PORT(0x0582, 0x0044, 0, "%s MIDI"),
1571 CONTROL_PORT(0x0582, 0x0044, 1, "%s Control"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 /* Edirol UR-80 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001573 EXTERNAL_PORT(0x0582, 0x0048, 0, "%s MIDI"),
1574 EXTERNAL_PORT(0x0582, 0x0048, 1, "%s 1"),
1575 EXTERNAL_PORT(0x0582, 0x0048, 2, "%s 2"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 /* Edirol PCR-A */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001577 EXTERNAL_PORT(0x0582, 0x004d, 0, "%s MIDI"),
1578 EXTERNAL_PORT(0x0582, 0x004d, 1, "%s 1"),
1579 EXTERNAL_PORT(0x0582, 0x004d, 2, "%s 2"),
Clemens Ladisch7c79b762006-01-10 18:56:23 +01001580 /* Edirol UM-3EX */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001581 CONTROL_PORT(0x0582, 0x009a, 3, "%s Control"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 /* M-Audio MidiSport 8x8 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001583 CONTROL_PORT(0x0763, 0x1031, 8, "%s Control"),
1584 CONTROL_PORT(0x0763, 0x1033, 8, "%s Control"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 /* MOTU Fastlane */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001586 EXTERNAL_PORT(0x07fd, 0x0001, 0, "%s MIDI A"),
1587 EXTERNAL_PORT(0x07fd, 0x0001, 1, "%s MIDI B"),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 /* Emagic Unitor8/AMT8/MT4 */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001589 EXTERNAL_PORT(0x086a, 0x0001, 8, "%s Broadcast"),
1590 EXTERNAL_PORT(0x086a, 0x0002, 8, "%s Broadcast"),
1591 EXTERNAL_PORT(0x086a, 0x0003, 4, "%s Broadcast"),
Krzysztof Foltman4434ade2010-05-20 20:31:10 +01001592 /* Akai MPD16 */
1593 CONTROL_PORT(0x09e8, 0x0062, 0, "%s Control"),
1594 PORT_INFO(0x09e8, 0x0062, 1, "%s MIDI", 0,
1595 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC |
1596 SNDRV_SEQ_PORT_TYPE_HARDWARE),
Sebastien Alaiwand39e82d2010-02-16 08:55:08 +01001597 /* Access Music Virus TI */
1598 EXTERNAL_PORT(0x133e, 0x0815, 0, "%s MIDI"),
1599 PORT_INFO(0x133e, 0x0815, 1, "%s Synth", 0,
1600 SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC |
1601 SNDRV_SEQ_PORT_TYPE_HARDWARE |
1602 SNDRV_SEQ_PORT_TYPE_SYNTHESIZER),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603};
1604
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001605static struct port_info *find_port_info(struct snd_usb_midi* umidi, int number)
1606{
1607 int i;
1608
1609 for (i = 0; i < ARRAY_SIZE(snd_usbmidi_port_info); ++i) {
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001610 if (snd_usbmidi_port_info[i].id == umidi->usb_id &&
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001611 snd_usbmidi_port_info[i].port == number)
1612 return &snd_usbmidi_port_info[i];
1613 }
1614 return NULL;
1615}
1616
1617static void snd_usbmidi_get_port_info(struct snd_rawmidi *rmidi, int number,
1618 struct snd_seq_port_info *seq_port_info)
1619{
1620 struct snd_usb_midi *umidi = rmidi->private_data;
1621 struct port_info *port_info;
1622
1623 /* TODO: read port flags from descriptors */
1624 port_info = find_port_info(umidi, number);
1625 if (port_info) {
1626 seq_port_info->type = port_info->seq_flags;
1627 seq_port_info->midi_voices = port_info->voices;
1628 }
1629}
1630
Takashi Iwai86e07d32005-11-17 15:08:02 +01001631static void snd_usbmidi_init_substream(struct snd_usb_midi* umidi,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 int stream, int number,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001633 struct snd_rawmidi_substream ** rsubstream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001635 struct port_info *port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 const char *name_format;
1637
Takashi Iwai86e07d32005-11-17 15:08:02 +01001638 struct snd_rawmidi_substream *substream = snd_usbmidi_find_substream(umidi, stream, number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (!substream) {
1640 snd_printd(KERN_ERR "substream %d:%d not found\n", stream, number);
1641 return;
1642 }
1643
1644 /* TODO: read port name from jack descriptor */
Clemens Ladischa7b928a2006-05-02 16:22:12 +02001645 port_info = find_port_info(umidi, number);
1646 name_format = port_info ? port_info->name : "%s MIDI %d";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 snprintf(substream->name, sizeof(substream->name),
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001648 name_format, umidi->card->shortname, number + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 *rsubstream = substream;
1651}
1652
1653/*
1654 * Creates the endpoints and their ports.
1655 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001656static int snd_usbmidi_create_endpoints(struct snd_usb_midi* umidi,
1657 struct snd_usb_midi_endpoint_info* endpoints)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
1659 int i, j, err;
1660 int out_ports = 0, in_ports = 0;
1661
1662 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
1663 if (endpoints[i].out_cables) {
1664 err = snd_usbmidi_out_endpoint_create(umidi, &endpoints[i],
1665 &umidi->endpoints[i]);
1666 if (err < 0)
1667 return err;
1668 }
1669 if (endpoints[i].in_cables) {
1670 err = snd_usbmidi_in_endpoint_create(umidi, &endpoints[i],
1671 &umidi->endpoints[i]);
1672 if (err < 0)
1673 return err;
1674 }
1675
1676 for (j = 0; j < 0x10; ++j) {
1677 if (endpoints[i].out_cables & (1 << j)) {
1678 snd_usbmidi_init_substream(umidi, SNDRV_RAWMIDI_STREAM_OUTPUT, out_ports,
1679 &umidi->endpoints[i].out->ports[j].substream);
1680 ++out_ports;
1681 }
1682 if (endpoints[i].in_cables & (1 << j)) {
1683 snd_usbmidi_init_substream(umidi, SNDRV_RAWMIDI_STREAM_INPUT, in_ports,
1684 &umidi->endpoints[i].in->ports[j].substream);
1685 ++in_ports;
1686 }
1687 }
1688 }
1689 snd_printdd(KERN_INFO "created %d output and %d input ports\n",
1690 out_ports, in_ports);
1691 return 0;
1692}
1693
1694/*
1695 * Returns MIDIStreaming device capabilities.
1696 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001697static int snd_usbmidi_get_ms_info(struct snd_usb_midi* umidi,
1698 struct snd_usb_midi_endpoint_info* endpoints)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
1700 struct usb_interface* intf;
1701 struct usb_host_interface *hostif;
1702 struct usb_interface_descriptor* intfd;
1703 struct usb_ms_header_descriptor* ms_header;
1704 struct usb_host_endpoint *hostep;
1705 struct usb_endpoint_descriptor* ep;
1706 struct usb_ms_endpoint_descriptor* ms_ep;
1707 int i, epidx;
1708
1709 intf = umidi->iface;
1710 if (!intf)
1711 return -ENXIO;
1712 hostif = &intf->altsetting[0];
1713 intfd = get_iface_desc(hostif);
1714 ms_header = (struct usb_ms_header_descriptor*)hostif->extra;
1715 if (hostif->extralen >= 7 &&
1716 ms_header->bLength >= 7 &&
1717 ms_header->bDescriptorType == USB_DT_CS_INTERFACE &&
Daniel Mackde48c7b2010-02-22 23:49:13 +01001718 ms_header->bDescriptorSubtype == UAC_HEADER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 snd_printdd(KERN_INFO "MIDIStreaming version %02x.%02x\n",
1720 ms_header->bcdMSC[1], ms_header->bcdMSC[0]);
1721 else
1722 snd_printk(KERN_WARNING "MIDIStreaming interface descriptor not found\n");
1723
1724 epidx = 0;
1725 for (i = 0; i < intfd->bNumEndpoints; ++i) {
1726 hostep = &hostif->endpoint[i];
1727 ep = get_ep_desc(hostep);
Julia Lawall913ae5a2009-01-03 17:54:53 +01001728 if (!usb_endpoint_xfer_bulk(ep) && !usb_endpoint_xfer_int(ep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 continue;
1730 ms_ep = (struct usb_ms_endpoint_descriptor*)hostep->extra;
1731 if (hostep->extralen < 4 ||
1732 ms_ep->bLength < 4 ||
1733 ms_ep->bDescriptorType != USB_DT_CS_ENDPOINT ||
Daniel Mackde48c7b2010-02-22 23:49:13 +01001734 ms_ep->bDescriptorSubtype != UAC_MS_GENERAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 continue;
Julia Lawall42a6e662008-12-29 11:23:02 +01001736 if (usb_endpoint_dir_out(ep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 if (endpoints[epidx].out_ep) {
1738 if (++epidx >= MIDI_MAX_ENDPOINTS) {
1739 snd_printk(KERN_WARNING "too many endpoints\n");
1740 break;
1741 }
1742 }
Julia Lawall42a6e662008-12-29 11:23:02 +01001743 endpoints[epidx].out_ep = usb_endpoint_num(ep);
1744 if (usb_endpoint_xfer_int(ep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 endpoints[epidx].out_interval = ep->bInterval;
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001746 else if (snd_usb_get_speed(umidi->dev) == USB_SPEED_LOW)
Clemens Ladisch56162aa2007-08-21 08:57:34 +02001747 /*
1748 * Low speed bulk transfers don't exist, so
1749 * force interrupt transfers for devices like
1750 * ESI MIDI Mate that try to use them anyway.
1751 */
1752 endpoints[epidx].out_interval = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 endpoints[epidx].out_cables = (1 << ms_ep->bNumEmbMIDIJack) - 1;
1754 snd_printdd(KERN_INFO "EP %02X: %d jack(s)\n",
1755 ep->bEndpointAddress, ms_ep->bNumEmbMIDIJack);
1756 } else {
1757 if (endpoints[epidx].in_ep) {
1758 if (++epidx >= MIDI_MAX_ENDPOINTS) {
1759 snd_printk(KERN_WARNING "too many endpoints\n");
1760 break;
1761 }
1762 }
Julia Lawall42a6e662008-12-29 11:23:02 +01001763 endpoints[epidx].in_ep = usb_endpoint_num(ep);
1764 if (usb_endpoint_xfer_int(ep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 endpoints[epidx].in_interval = ep->bInterval;
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001766 else if (snd_usb_get_speed(umidi->dev) == USB_SPEED_LOW)
Clemens Ladisch56162aa2007-08-21 08:57:34 +02001767 endpoints[epidx].in_interval = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 endpoints[epidx].in_cables = (1 << ms_ep->bNumEmbMIDIJack) - 1;
1769 snd_printdd(KERN_INFO "EP %02X: %d jack(s)\n",
1770 ep->bEndpointAddress, ms_ep->bNumEmbMIDIJack);
1771 }
1772 }
1773 return 0;
1774}
1775
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001776static int roland_load_info(struct snd_kcontrol *kcontrol,
1777 struct snd_ctl_elem_info *info)
1778{
1779 static const char *const names[] = { "High Load", "Light Load" };
1780
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01001781 return snd_ctl_enum_info(info, 1, 2, names);
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001782}
1783
1784static int roland_load_get(struct snd_kcontrol *kcontrol,
1785 struct snd_ctl_elem_value *value)
1786{
1787 value->value.enumerated.item[0] = kcontrol->private_value;
1788 return 0;
1789}
1790
1791static int roland_load_put(struct snd_kcontrol *kcontrol,
1792 struct snd_ctl_elem_value *value)
1793{
1794 struct snd_usb_midi* umidi = kcontrol->private_data;
1795 int changed;
1796
1797 if (value->value.enumerated.item[0] > 1)
1798 return -EINVAL;
1799 mutex_lock(&umidi->mutex);
1800 changed = value->value.enumerated.item[0] != kcontrol->private_value;
1801 if (changed)
1802 kcontrol->private_value = value->value.enumerated.item[0];
1803 mutex_unlock(&umidi->mutex);
1804 return changed;
1805}
1806
1807static struct snd_kcontrol_new roland_load_ctl = {
1808 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1809 .name = "MIDI Input Mode",
1810 .info = roland_load_info,
1811 .get = roland_load_get,
1812 .put = roland_load_put,
1813 .private_value = 1,
1814};
1815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816/*
1817 * On Roland devices, use the second alternate setting to be able to use
1818 * the interrupt input endpoint.
1819 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001820static void snd_usbmidi_switch_roland_altsetting(struct snd_usb_midi* umidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821{
1822 struct usb_interface* intf;
1823 struct usb_host_interface *hostif;
1824 struct usb_interface_descriptor* intfd;
1825
1826 intf = umidi->iface;
1827 if (!intf || intf->num_altsetting != 2)
1828 return;
1829
1830 hostif = &intf->altsetting[1];
1831 intfd = get_iface_desc(hostif);
1832 if (intfd->bNumEndpoints != 2 ||
1833 (get_endpoint(hostif, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_BULK ||
1834 (get_endpoint(hostif, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_INT)
1835 return;
1836
1837 snd_printdd(KERN_INFO "switching to altsetting %d with int ep\n",
1838 intfd->bAlternateSetting);
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001839 usb_set_interface(umidi->dev, intfd->bInterfaceNumber,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 intfd->bAlternateSetting);
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001841
1842 umidi->roland_load_ctl = snd_ctl_new1(&roland_load_ctl, umidi);
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001843 if (snd_ctl_add(umidi->card, umidi->roland_load_ctl) < 0)
Clemens Ladisch96f61d92009-10-22 09:06:19 +02001844 umidi->roland_load_ctl = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845}
1846
1847/*
1848 * Try to find any usable endpoints in the interface.
1849 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001850static int snd_usbmidi_detect_endpoints(struct snd_usb_midi* umidi,
1851 struct snd_usb_midi_endpoint_info* endpoint,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 int max_endpoints)
1853{
1854 struct usb_interface* intf;
1855 struct usb_host_interface *hostif;
1856 struct usb_interface_descriptor* intfd;
1857 struct usb_endpoint_descriptor* epd;
1858 int i, out_eps = 0, in_eps = 0;
1859
Clemens Ladischd82af9f2009-11-16 12:23:46 +01001860 if (USB_ID_VENDOR(umidi->usb_id) == 0x0582)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 snd_usbmidi_switch_roland_altsetting(umidi);
1862
Clemens Ladischc1ab5d52005-03-30 16:22:01 +02001863 if (endpoint[0].out_ep || endpoint[0].in_ep)
Daniel Mack21af7d82010-06-16 17:57:29 +02001864 return 0;
Clemens Ladischc1ab5d52005-03-30 16:22:01 +02001865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 intf = umidi->iface;
1867 if (!intf || intf->num_altsetting < 1)
1868 return -ENOENT;
1869 hostif = intf->cur_altsetting;
1870 intfd = get_iface_desc(hostif);
1871
1872 for (i = 0; i < intfd->bNumEndpoints; ++i) {
1873 epd = get_endpoint(hostif, i);
Julia Lawall913ae5a2009-01-03 17:54:53 +01001874 if (!usb_endpoint_xfer_bulk(epd) &&
1875 !usb_endpoint_xfer_int(epd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 continue;
1877 if (out_eps < max_endpoints &&
Julia Lawall42a6e662008-12-29 11:23:02 +01001878 usb_endpoint_dir_out(epd)) {
1879 endpoint[out_eps].out_ep = usb_endpoint_num(epd);
1880 if (usb_endpoint_xfer_int(epd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 endpoint[out_eps].out_interval = epd->bInterval;
1882 ++out_eps;
1883 }
1884 if (in_eps < max_endpoints &&
Julia Lawall42a6e662008-12-29 11:23:02 +01001885 usb_endpoint_dir_in(epd)) {
1886 endpoint[in_eps].in_ep = usb_endpoint_num(epd);
1887 if (usb_endpoint_xfer_int(epd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 endpoint[in_eps].in_interval = epd->bInterval;
1889 ++in_eps;
1890 }
1891 }
1892 return (out_eps || in_eps) ? 0 : -ENOENT;
1893}
1894
1895/*
1896 * Detects the endpoints for one-port-per-endpoint protocols.
1897 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001898static int snd_usbmidi_detect_per_port_endpoints(struct snd_usb_midi* umidi,
1899 struct snd_usb_midi_endpoint_info* endpoints)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
1901 int err, i;
Daniel Mack21af7d82010-06-16 17:57:29 +02001902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 err = snd_usbmidi_detect_endpoints(umidi, endpoints, MIDI_MAX_ENDPOINTS);
1904 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
1905 if (endpoints[i].out_ep)
1906 endpoints[i].out_cables = 0x0001;
1907 if (endpoints[i].in_ep)
1908 endpoints[i].in_cables = 0x0001;
1909 }
1910 return err;
1911}
1912
1913/*
1914 * Detects the endpoints and ports of Yamaha devices.
1915 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001916static int snd_usbmidi_detect_yamaha(struct snd_usb_midi* umidi,
1917 struct snd_usb_midi_endpoint_info* endpoint)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
1919 struct usb_interface* intf;
1920 struct usb_host_interface *hostif;
1921 struct usb_interface_descriptor* intfd;
1922 uint8_t* cs_desc;
1923
1924 intf = umidi->iface;
1925 if (!intf)
1926 return -ENOENT;
1927 hostif = intf->altsetting;
1928 intfd = get_iface_desc(hostif);
1929 if (intfd->bNumEndpoints < 1)
1930 return -ENOENT;
1931
1932 /*
1933 * For each port there is one MIDI_IN/OUT_JACK descriptor, not
1934 * necessarily with any useful contents. So simply count 'em.
1935 */
1936 for (cs_desc = hostif->extra;
1937 cs_desc < hostif->extra + hostif->extralen && cs_desc[0] >= 2;
1938 cs_desc += cs_desc[0]) {
Ben Williamsonc4a87ef2006-06-19 17:20:09 +02001939 if (cs_desc[1] == USB_DT_CS_INTERFACE) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01001940 if (cs_desc[2] == UAC_MIDI_IN_JACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 endpoint->in_cables = (endpoint->in_cables << 1) | 1;
Daniel Mackde48c7b2010-02-22 23:49:13 +01001942 else if (cs_desc[2] == UAC_MIDI_OUT_JACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 endpoint->out_cables = (endpoint->out_cables << 1) | 1;
1944 }
1945 }
1946 if (!endpoint->in_cables && !endpoint->out_cables)
1947 return -ENOENT;
1948
1949 return snd_usbmidi_detect_endpoints(umidi, endpoint, 1);
1950}
1951
1952/*
1953 * Creates the endpoints and their ports for Midiman devices.
1954 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001955static int snd_usbmidi_create_endpoints_midiman(struct snd_usb_midi* umidi,
1956 struct snd_usb_midi_endpoint_info* endpoint)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001958 struct snd_usb_midi_endpoint_info ep_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 struct usb_interface* intf;
1960 struct usb_host_interface *hostif;
1961 struct usb_interface_descriptor* intfd;
1962 struct usb_endpoint_descriptor* epd;
1963 int cable, err;
1964
1965 intf = umidi->iface;
1966 if (!intf)
1967 return -ENOENT;
1968 hostif = intf->altsetting;
1969 intfd = get_iface_desc(hostif);
1970 /*
1971 * The various MidiSport devices have more or less random endpoint
1972 * numbers, so we have to identify the endpoints by their index in
1973 * the descriptor array, like the driver for that other OS does.
1974 *
1975 * There is one interrupt input endpoint for all input ports, one
1976 * bulk output endpoint for even-numbered ports, and one for odd-
1977 * numbered ports. Both bulk output endpoints have corresponding
1978 * input bulk endpoints (at indices 1 and 3) which aren't used.
1979 */
1980 if (intfd->bNumEndpoints < (endpoint->out_cables > 0x0001 ? 5 : 3)) {
1981 snd_printdd(KERN_ERR "not enough endpoints\n");
1982 return -ENOENT;
1983 }
1984
1985 epd = get_endpoint(hostif, 0);
Julia Lawall913ae5a2009-01-03 17:54:53 +01001986 if (!usb_endpoint_dir_in(epd) || !usb_endpoint_xfer_int(epd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 snd_printdd(KERN_ERR "endpoint[0] isn't interrupt\n");
1988 return -ENXIO;
1989 }
1990 epd = get_endpoint(hostif, 2);
Julia Lawall913ae5a2009-01-03 17:54:53 +01001991 if (!usb_endpoint_dir_out(epd) || !usb_endpoint_xfer_bulk(epd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 snd_printdd(KERN_ERR "endpoint[2] isn't bulk output\n");
1993 return -ENXIO;
1994 }
1995 if (endpoint->out_cables > 0x0001) {
1996 epd = get_endpoint(hostif, 4);
Julia Lawall913ae5a2009-01-03 17:54:53 +01001997 if (!usb_endpoint_dir_out(epd) ||
1998 !usb_endpoint_xfer_bulk(epd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 snd_printdd(KERN_ERR "endpoint[4] isn't bulk output\n");
2000 return -ENXIO;
2001 }
2002 }
2003
2004 ep_info.out_ep = get_endpoint(hostif, 2)->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
Clemens Ladische156ac42009-02-16 15:22:39 +01002005 ep_info.out_interval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 ep_info.out_cables = endpoint->out_cables & 0x5555;
2007 err = snd_usbmidi_out_endpoint_create(umidi, &ep_info, &umidi->endpoints[0]);
2008 if (err < 0)
2009 return err;
2010
2011 ep_info.in_ep = get_endpoint(hostif, 0)->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
2012 ep_info.in_interval = get_endpoint(hostif, 0)->bInterval;
2013 ep_info.in_cables = endpoint->in_cables;
2014 err = snd_usbmidi_in_endpoint_create(umidi, &ep_info, &umidi->endpoints[0]);
2015 if (err < 0)
2016 return err;
2017
2018 if (endpoint->out_cables > 0x0001) {
2019 ep_info.out_ep = get_endpoint(hostif, 4)->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
2020 ep_info.out_cables = endpoint->out_cables & 0xaaaa;
2021 err = snd_usbmidi_out_endpoint_create(umidi, &ep_info, &umidi->endpoints[1]);
2022 if (err < 0)
2023 return err;
2024 }
2025
2026 for (cable = 0; cable < 0x10; ++cable) {
2027 if (endpoint->out_cables & (1 << cable))
2028 snd_usbmidi_init_substream(umidi, SNDRV_RAWMIDI_STREAM_OUTPUT, cable,
2029 &umidi->endpoints[cable & 1].out->ports[cable].substream);
2030 if (endpoint->in_cables & (1 << cable))
2031 snd_usbmidi_init_substream(umidi, SNDRV_RAWMIDI_STREAM_INPUT, cable,
2032 &umidi->endpoints[0].in->ports[cable].substream);
2033 }
2034 return 0;
2035}
2036
Clemens Ladischa7b928a2006-05-02 16:22:12 +02002037static struct snd_rawmidi_global_ops snd_usbmidi_ops = {
2038 .get_port_info = snd_usbmidi_get_port_info,
2039};
2040
Takashi Iwai86e07d32005-11-17 15:08:02 +01002041static int snd_usbmidi_create_rawmidi(struct snd_usb_midi* umidi,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 int out_ports, int in_ports)
2043{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002044 struct snd_rawmidi *rmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 int err;
2046
Clemens Ladischd82af9f2009-11-16 12:23:46 +01002047 err = snd_rawmidi_new(umidi->card, "USB MIDI",
2048 umidi->next_midi_device++,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 out_ports, in_ports, &rmidi);
2050 if (err < 0)
2051 return err;
Clemens Ladischd82af9f2009-11-16 12:23:46 +01002052 strcpy(rmidi->name, umidi->card->shortname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 rmidi->info_flags = SNDRV_RAWMIDI_INFO_OUTPUT |
2054 SNDRV_RAWMIDI_INFO_INPUT |
2055 SNDRV_RAWMIDI_INFO_DUPLEX;
Clemens Ladischa7b928a2006-05-02 16:22:12 +02002056 rmidi->ops = &snd_usbmidi_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 rmidi->private_data = umidi;
2058 rmidi->private_free = snd_usbmidi_rawmidi_free;
2059 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_usbmidi_output_ops);
2060 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_usbmidi_input_ops);
2061
2062 umidi->rmidi = rmidi;
2063 return 0;
2064}
2065
2066/*
2067 * Temporarily stop input.
2068 */
2069void snd_usbmidi_input_stop(struct list_head* p)
2070{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002071 struct snd_usb_midi* umidi;
Clemens Ladisch4773d1f2009-07-13 13:40:36 +02002072 unsigned int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Takashi Iwai86e07d32005-11-17 15:08:02 +01002074 umidi = list_entry(p, struct snd_usb_midi, list);
Takashi Iwai394c9d82012-12-03 11:30:50 +01002075 if (!umidi->input_running)
2076 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002078 struct snd_usb_midi_endpoint* ep = &umidi->endpoints[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 if (ep->in)
Clemens Ladisch4773d1f2009-07-13 13:40:36 +02002080 for (j = 0; j < INPUT_URBS; ++j)
2081 usb_kill_urb(ep->in->urbs[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 }
Takashi Iwai394c9d82012-12-03 11:30:50 +01002083 umidi->input_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084}
2085
Takashi Iwai86e07d32005-11-17 15:08:02 +01002086static void snd_usbmidi_input_start_ep(struct snd_usb_midi_in_endpoint* ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Clemens Ladisch4773d1f2009-07-13 13:40:36 +02002088 unsigned int i;
2089
2090 if (!ep)
2091 return;
2092 for (i = 0; i < INPUT_URBS; ++i) {
2093 struct urb* urb = ep->urbs[i];
Clemens Ladischd82af9f2009-11-16 12:23:46 +01002094 urb->dev = ep->umidi->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 snd_usbmidi_submit_urb(urb, GFP_KERNEL);
2096 }
2097}
2098
2099/*
2100 * Resume input after a call to snd_usbmidi_input_stop().
2101 */
2102void snd_usbmidi_input_start(struct list_head* p)
2103{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002104 struct snd_usb_midi* umidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 int i;
2106
Takashi Iwai86e07d32005-11-17 15:08:02 +01002107 umidi = list_entry(p, struct snd_usb_midi, list);
Takashi Iwai394c9d82012-12-03 11:30:50 +01002108 if (umidi->input_running || !umidi->opened[1])
2109 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i)
2111 snd_usbmidi_input_start_ep(umidi->endpoints[i].in);
Takashi Iwai394c9d82012-12-03 11:30:50 +01002112 umidi->input_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113}
2114
2115/*
2116 * Creates and registers everything needed for a MIDI streaming interface.
2117 */
Clemens Ladischd82af9f2009-11-16 12:23:46 +01002118int snd_usbmidi_create(struct snd_card *card,
2119 struct usb_interface* iface,
2120 struct list_head *midi_list,
2121 const struct snd_usb_audio_quirk* quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002123 struct snd_usb_midi* umidi;
2124 struct snd_usb_midi_endpoint_info endpoints[MIDI_MAX_ENDPOINTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 int out_ports, in_ports;
2126 int i, err;
2127
Takashi Iwai561b2202005-09-09 14:22:34 +02002128 umidi = kzalloc(sizeof(*umidi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if (!umidi)
2130 return -ENOMEM;
Clemens Ladischd82af9f2009-11-16 12:23:46 +01002131 umidi->dev = interface_to_usbdev(iface);
2132 umidi->card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 umidi->iface = iface;
2134 umidi->quirk = quirk;
2135 umidi->usb_protocol_ops = &snd_usbmidi_standard_ops;
Clemens Ladischc8846972005-08-02 15:26:52 +02002136 init_timer(&umidi->error_timer);
Takashi Iwaic0792e02008-02-22 18:34:44 +01002137 spin_lock_init(&umidi->disc_lock);
Takashi Iwai2ca77192012-12-03 11:12:46 +01002138 init_rwsem(&umidi->disc_rwsem);
Clemens Ladisch96f61d92009-10-22 09:06:19 +02002139 mutex_init(&umidi->mutex);
Clemens Ladischd82af9f2009-11-16 12:23:46 +01002140 umidi->usb_id = USB_ID(le16_to_cpu(umidi->dev->descriptor.idVendor),
2141 le16_to_cpu(umidi->dev->descriptor.idProduct));
Clemens Ladischc8846972005-08-02 15:26:52 +02002142 umidi->error_timer.function = snd_usbmidi_error_timer;
2143 umidi->error_timer.data = (unsigned long)umidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145 /* detect the endpoint(s) to use */
2146 memset(endpoints, 0, sizeof(endpoints));
Clemens Ladischd1bda042005-09-14 08:36:03 +02002147 switch (quirk ? quirk->type : QUIRK_MIDI_STANDARD_INTERFACE) {
2148 case QUIRK_MIDI_STANDARD_INTERFACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 err = snd_usbmidi_get_ms_info(umidi, endpoints);
Clemens Ladischd82af9f2009-11-16 12:23:46 +01002150 if (umidi->usb_id == USB_ID(0x0763, 0x0150)) /* M-Audio Uno */
Clemens Ladischd05cc10432007-05-07 09:28:53 +02002151 umidi->usb_protocol_ops =
2152 &snd_usbmidi_maudio_broken_running_status_ops;
Clemens Ladischd1bda042005-09-14 08:36:03 +02002153 break;
Karsten Wiese030a07e2008-07-30 15:13:29 +02002154 case QUIRK_MIDI_US122L:
2155 umidi->usb_protocol_ops = &snd_usbmidi_122l_ops;
2156 /* fall through */
Clemens Ladischd1bda042005-09-14 08:36:03 +02002157 case QUIRK_MIDI_FIXED_ENDPOINT:
2158 memcpy(&endpoints[0], quirk->data,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002159 sizeof(struct snd_usb_midi_endpoint_info));
Clemens Ladischd1bda042005-09-14 08:36:03 +02002160 err = snd_usbmidi_detect_endpoints(umidi, &endpoints[0], 1);
2161 break;
2162 case QUIRK_MIDI_YAMAHA:
2163 err = snd_usbmidi_detect_yamaha(umidi, &endpoints[0]);
2164 break;
2165 case QUIRK_MIDI_MIDIMAN:
2166 umidi->usb_protocol_ops = &snd_usbmidi_midiman_ops;
2167 memcpy(&endpoints[0], quirk->data,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002168 sizeof(struct snd_usb_midi_endpoint_info));
Clemens Ladischd1bda042005-09-14 08:36:03 +02002169 err = 0;
2170 break;
2171 case QUIRK_MIDI_NOVATION:
2172 umidi->usb_protocol_ops = &snd_usbmidi_novation_ops;
2173 err = snd_usbmidi_detect_per_port_endpoints(umidi, endpoints);
2174 break;
Clemens Ladischc7f57212010-10-22 18:20:48 +02002175 case QUIRK_MIDI_RAW_BYTES:
Clemens Ladischd1bda042005-09-14 08:36:03 +02002176 umidi->usb_protocol_ops = &snd_usbmidi_raw_ops;
Clemens Ladisch55de5ef2009-05-27 10:49:30 +02002177 /*
2178 * Interface 1 contains isochronous endpoints, but with the same
2179 * numbers as in interface 0. Since it is interface 1 that the
2180 * USB core has most recently seen, these descriptors are now
2181 * associated with the endpoint numbers. This will foul up our
2182 * attempts to submit bulk/interrupt URBs to the endpoints in
2183 * interface 0, so we have to make sure that the USB core looks
2184 * again at interface 0 by calling usb_set_interface() on it.
2185 */
Clemens Ladischc7f57212010-10-22 18:20:48 +02002186 if (umidi->usb_id == USB_ID(0x07fd, 0x0001)) /* MOTU Fastlane */
2187 usb_set_interface(umidi->dev, 0, 0);
Clemens Ladischd1bda042005-09-14 08:36:03 +02002188 err = snd_usbmidi_detect_per_port_endpoints(umidi, endpoints);
2189 break;
2190 case QUIRK_MIDI_EMAGIC:
2191 umidi->usb_protocol_ops = &snd_usbmidi_emagic_ops;
2192 memcpy(&endpoints[0], quirk->data,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002193 sizeof(struct snd_usb_midi_endpoint_info));
Clemens Ladischd1bda042005-09-14 08:36:03 +02002194 err = snd_usbmidi_detect_endpoints(umidi, &endpoints[0], 1);
2195 break;
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01002196 case QUIRK_MIDI_CME:
Clemens Ladisch61870ae2007-08-16 08:44:51 +02002197 umidi->usb_protocol_ops = &snd_usbmidi_cme_ops;
Clemens Ladischd1bda042005-09-14 08:36:03 +02002198 err = snd_usbmidi_detect_per_port_endpoints(umidi, endpoints);
2199 break;
Krzysztof Foltman4434ade2010-05-20 20:31:10 +01002200 case QUIRK_MIDI_AKAI:
2201 umidi->usb_protocol_ops = &snd_usbmidi_akai_ops;
2202 err = snd_usbmidi_detect_per_port_endpoints(umidi, endpoints);
2203 /* endpoint 1 is input-only */
2204 endpoints[1].out_cables = 0;
2205 break;
Kristian Amlie1ef0e0a2011-08-26 13:19:49 +02002206 case QUIRK_MIDI_FTDI:
2207 umidi->usb_protocol_ops = &snd_usbmidi_ftdi_ops;
2208
2209 /* set baud rate to 31250 (48 MHz / 16 / 96) */
2210 err = usb_control_msg(umidi->dev, usb_sndctrlpipe(umidi->dev, 0),
2211 3, 0x40, 0x60, 0, NULL, 0, 1000);
2212 if (err < 0)
2213 break;
2214
2215 err = snd_usbmidi_detect_per_port_endpoints(umidi, endpoints);
2216 break;
Clemens Ladischd1bda042005-09-14 08:36:03 +02002217 default:
2218 snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
2219 err = -ENXIO;
2220 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 }
2222 if (err < 0) {
2223 kfree(umidi);
2224 return err;
2225 }
2226
2227 /* create rawmidi device */
2228 out_ports = 0;
2229 in_ports = 0;
2230 for (i = 0; i < MIDI_MAX_ENDPOINTS; ++i) {
Akinobu Mitafbc54392009-11-20 14:56:52 +09002231 out_ports += hweight16(endpoints[i].out_cables);
2232 in_ports += hweight16(endpoints[i].in_cables);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 }
2234 err = snd_usbmidi_create_rawmidi(umidi, out_ports, in_ports);
2235 if (err < 0) {
2236 kfree(umidi);
2237 return err;
2238 }
2239
2240 /* create endpoint/port structures */
2241 if (quirk && quirk->type == QUIRK_MIDI_MIDIMAN)
2242 err = snd_usbmidi_create_endpoints_midiman(umidi, &endpoints[0]);
2243 else
2244 err = snd_usbmidi_create_endpoints(umidi, endpoints);
2245 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 return err;
2247 }
2248
Clemens Ladischd5928a12013-04-15 15:59:51 +02002249 usb_autopm_get_interface_no_resume(umidi->iface);
2250
Clemens Ladischd82af9f2009-11-16 12:23:46 +01002251 list_add_tail(&umidi->list, midi_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 return 0;
2253}
2254
Clemens Ladischd82af9f2009-11-16 12:23:46 +01002255EXPORT_SYMBOL(snd_usbmidi_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256EXPORT_SYMBOL(snd_usbmidi_input_stop);
2257EXPORT_SYMBOL(snd_usbmidi_input_start);
2258EXPORT_SYMBOL(snd_usbmidi_disconnect);