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