Thomas Gleixner | a10e763 | 2019-05-31 01:09:32 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 2 | /* |
Chris Rorvick | c078a4a | 2015-01-20 02:20:50 -0600 | [diff] [blame] | 3 | * Line 6 Linux USB driver |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 4 | * |
Markus Grabner | 1027f47 | 2010-08-12 01:35:30 +0200 | [diff] [blame] | 5 | * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at) |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef DRIVER_H |
| 9 | #define DRIVER_H |
| 10 | |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 11 | #include <linux/usb.h> |
Andrej Krutak | a16039cb | 2016-09-18 20:59:32 +0200 | [diff] [blame] | 12 | #include <linux/mutex.h> |
| 13 | #include <linux/kfifo.h> |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 14 | #include <sound/core.h> |
| 15 | |
| 16 | #include "midi.h" |
| 17 | |
Andrej Krutak | 79faa2b | 2016-09-18 20:59:22 +0200 | [diff] [blame] | 18 | /* USB 1.1 speed configuration */ |
| 19 | #define USB_LOW_INTERVALS_PER_SECOND 1000 |
| 20 | #define USB_LOW_ISO_BUFFERS 2 |
| 21 | |
| 22 | /* USB 2.0+ speed configuration */ |
| 23 | #define USB_HIGH_INTERVALS_PER_SECOND 8000 |
| 24 | #define USB_HIGH_ISO_BUFFERS 16 |
Takashi Iwai | 129b3be | 2015-01-28 14:50:08 +0100 | [diff] [blame] | 25 | |
| 26 | /* Fallback USB interval and max packet size values */ |
| 27 | #define LINE6_FALLBACK_INTERVAL 10 |
| 28 | #define LINE6_FALLBACK_MAXPACKETSIZE 16 |
| 29 | |
Johan Hovold | f4000b58 | 2021-10-25 14:11:42 +0200 | [diff] [blame] | 30 | #define LINE6_TIMEOUT 1000 |
Andrej Krutak | 97d78ac | 2016-09-18 20:59:24 +0200 | [diff] [blame] | 31 | #define LINE6_BUFSIZE_LISTEN 64 |
Andrej Krutak | a16039cb | 2016-09-18 20:59:32 +0200 | [diff] [blame] | 32 | #define LINE6_MIDI_MESSAGE_MAXLEN 256 |
| 33 | |
| 34 | #define LINE6_RAW_MESSAGES_MAXCOUNT_ORDER 7 |
| 35 | /* 4k packets are common, BUFSIZE * MAXCOUNT should be bigger... */ |
| 36 | #define LINE6_RAW_MESSAGES_MAXCOUNT (1 << LINE6_RAW_MESSAGES_MAXCOUNT_ORDER) |
| 37 | |
| 38 | |
| 39 | #if LINE6_BUFSIZE_LISTEN > 65535 |
| 40 | #error "Use dynamic fifo instead" |
| 41 | #endif |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 42 | |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 43 | /* |
Chris Rorvick | c6fffce | 2015-01-20 02:20:49 -0600 | [diff] [blame] | 44 | Line 6 MIDI control commands |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 45 | */ |
| 46 | #define LINE6_PARAM_CHANGE 0xb0 |
| 47 | #define LINE6_PROGRAM_CHANGE 0xc0 |
| 48 | #define LINE6_SYSEX_BEGIN 0xf0 |
| 49 | #define LINE6_SYSEX_END 0xf7 |
| 50 | #define LINE6_RESET 0xff |
| 51 | |
| 52 | /* |
| 53 | MIDI channel for messages initiated by the host |
| 54 | (and eventually echoed back by the device) |
| 55 | */ |
| 56 | #define LINE6_CHANNEL_HOST 0x00 |
| 57 | |
| 58 | /* |
| 59 | MIDI channel for messages initiated by the device |
| 60 | */ |
| 61 | #define LINE6_CHANNEL_DEVICE 0x02 |
| 62 | |
Markus Grabner | e1a164d | 2010-08-23 01:08:25 +0200 | [diff] [blame] | 63 | #define LINE6_CHANNEL_UNKNOWN 5 /* don't know yet what this is good for */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 64 | |
| 65 | #define LINE6_CHANNEL_MASK 0x0f |
| 66 | |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 67 | extern const unsigned char line6_midi_id[3]; |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 68 | |
Pierre-Louis Bossart | ec03370 | 2020-07-07 13:49:24 -0500 | [diff] [blame] | 69 | #define SYSEX_DATA_OFS (sizeof(line6_midi_id) + 3) |
| 70 | #define SYSEX_EXTRA_SIZE (sizeof(line6_midi_id) + 4) |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 71 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 72 | /* |
Chris Rorvick | c6fffce | 2015-01-20 02:20:49 -0600 | [diff] [blame] | 73 | Common properties of Line 6 devices. |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 74 | */ |
| 75 | struct line6_properties { |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 76 | /* Card id string (maximum 16 characters). |
| 77 | * This can be used to address the device in ALSA programs as |
| 78 | * "default:CARD=<id>" |
| 79 | */ |
Markus Grabner | 1027f47 | 2010-08-12 01:35:30 +0200 | [diff] [blame] | 80 | const char *id; |
| 81 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 82 | /* Card short name (maximum 32 characters) */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 83 | const char *name; |
Markus Grabner | 1027f47 | 2010-08-12 01:35:30 +0200 | [diff] [blame] | 84 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 85 | /* Bit vector defining this device's capabilities in line6usb driver */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 86 | int capabilities; |
Chris Rorvick | 7b9584f | 2015-01-12 12:42:52 -0800 | [diff] [blame] | 87 | |
| 88 | int altsetting; |
Chris Rorvick | 9e165be | 2015-01-12 12:42:53 -0800 | [diff] [blame] | 89 | |
Andrej Krutak | fc90172 | 2016-11-29 22:12:51 +0100 | [diff] [blame] | 90 | unsigned int ctrl_if; |
| 91 | unsigned int ep_ctrl_r; |
| 92 | unsigned int ep_ctrl_w; |
| 93 | unsigned int ep_audio_r; |
| 94 | unsigned int ep_audio_w; |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 95 | }; |
| 96 | |
Takashi Iwai | 129b3be | 2015-01-28 14:50:08 +0100 | [diff] [blame] | 97 | /* Capability bits */ |
| 98 | enum { |
| 99 | /* device supports settings parameter via USB */ |
| 100 | LINE6_CAP_CONTROL = 1 << 0, |
| 101 | /* device supports PCM input/output via USB */ |
| 102 | LINE6_CAP_PCM = 1 << 1, |
Andrej Krutak | f56742c | 2016-09-18 20:59:25 +0200 | [diff] [blame] | 103 | /* device supports hardware monitoring */ |
Takashi Iwai | 129b3be | 2015-01-28 14:50:08 +0100 | [diff] [blame] | 104 | LINE6_CAP_HWMON = 1 << 2, |
Andrej Krutak | f56742c | 2016-09-18 20:59:25 +0200 | [diff] [blame] | 105 | /* device requires output data when input is read */ |
| 106 | LINE6_CAP_IN_NEEDS_OUT = 1 << 3, |
Andrej Krutak | 174e1fc | 2016-09-18 20:59:26 +0200 | [diff] [blame] | 107 | /* device uses raw MIDI via USB (data endpoints) */ |
| 108 | LINE6_CAP_CONTROL_MIDI = 1 << 4, |
Hans P. Möller Ebner | 8cad7a3 | 2017-06-16 14:14:17 -0400 | [diff] [blame] | 109 | /* device provides low-level information */ |
| 110 | LINE6_CAP_CONTROL_INFO = 1 << 5, |
Vasily Khoruzhick | 0afff87 | 2020-07-13 08:28:52 -0700 | [diff] [blame] | 111 | /* device provides hardware monitoring volume control */ |
| 112 | LINE6_CAP_HWMON_CTL = 1 << 6, |
Takashi Iwai | 129b3be | 2015-01-28 14:50:08 +0100 | [diff] [blame] | 113 | }; |
| 114 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 115 | /* |
Chris Rorvick | c6fffce | 2015-01-20 02:20:49 -0600 | [diff] [blame] | 116 | Common data shared by all Line 6 devices. |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 117 | Corresponds to a pair of USB endpoints. |
| 118 | */ |
| 119 | struct usb_line6 { |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 120 | /* USB device */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 121 | struct usb_device *usbdev; |
| 122 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 123 | /* Properties */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 124 | const struct line6_properties *properties; |
| 125 | |
Andrej Krutak | 79faa2b | 2016-09-18 20:59:22 +0200 | [diff] [blame] | 126 | /* Interval for data USB packets */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 127 | int interval; |
Andrej Krutak | 79faa2b | 2016-09-18 20:59:22 +0200 | [diff] [blame] | 128 | /* ...for isochronous transfers framing */ |
| 129 | int intervals_per_second; |
| 130 | |
Andrej Krutak | b2233d9 | 2016-09-18 20:59:21 +0200 | [diff] [blame] | 131 | /* Number of isochronous URBs used for frame transfers */ |
| 132 | int iso_buffers; |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 133 | |
Andrej Krutak | 79faa2b | 2016-09-18 20:59:22 +0200 | [diff] [blame] | 134 | /* Maximum size of data USB packet */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 135 | int max_packet_size; |
| 136 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 137 | /* Device representing the USB interface */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 138 | struct device *ifcdev; |
| 139 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 140 | /* Line 6 sound card data structure. |
| 141 | * Each device has at least MIDI or PCM. |
| 142 | */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 143 | struct snd_card *card; |
| 144 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 145 | /* Line 6 PCM device data structure */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 146 | struct snd_line6_pcm *line6pcm; |
| 147 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 148 | /* Line 6 MIDI device data structure */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 149 | struct snd_line6_midi *line6midi; |
| 150 | |
Andrej Krutak | 174e1fc | 2016-09-18 20:59:26 +0200 | [diff] [blame] | 151 | /* URB for listening to POD data endpoint */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 152 | struct urb *urb_listen; |
| 153 | |
Andrej Krutak | 7811a3a | 2016-09-18 20:59:27 +0200 | [diff] [blame] | 154 | /* Buffer for incoming data from POD data endpoint */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 155 | unsigned char *buffer_listen; |
| 156 | |
Andrej Krutak | 7811a3a | 2016-09-18 20:59:27 +0200 | [diff] [blame] | 157 | /* Buffer for message to be processed, generated from MIDI layer */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 158 | unsigned char *buffer_message; |
| 159 | |
Andrej Krutak | 7811a3a | 2016-09-18 20:59:27 +0200 | [diff] [blame] | 160 | /* Length of message to be processed, generated from MIDI layer */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 161 | int message_length; |
Chris Rorvick | 01f6b2b | 2015-01-12 12:42:58 -0800 | [diff] [blame] | 162 | |
Andrej Krutak | a16039cb | 2016-09-18 20:59:32 +0200 | [diff] [blame] | 163 | /* Circular buffer for non-MIDI control messages */ |
| 164 | struct { |
| 165 | struct mutex read_lock; |
| 166 | wait_queue_head_t wait_queue; |
| 167 | unsigned int active:1; |
Vasily Khoruzhick | 5c2d0de | 2020-05-02 12:31:19 -0700 | [diff] [blame] | 168 | unsigned int nonblock:1; |
Andrej Krutak | a16039cb | 2016-09-18 20:59:32 +0200 | [diff] [blame] | 169 | STRUCT_KFIFO_REC_2(LINE6_BUFSIZE_LISTEN * LINE6_RAW_MESSAGES_MAXCOUNT) |
| 170 | fifo; |
| 171 | } messages; |
| 172 | |
Takashi Iwai | 0b074ab | 2019-05-28 08:39:44 +0200 | [diff] [blame] | 173 | /* Work for delayed PCM startup */ |
| 174 | struct delayed_work startup_work; |
| 175 | |
Andrej Krutak | 7811a3a | 2016-09-18 20:59:27 +0200 | [diff] [blame] | 176 | /* If MIDI is supported, buffer_message contains the pre-processed data; |
| 177 | * otherwise the data is only in urb_listen (buffer_incoming). |
| 178 | */ |
Chris Rorvick | 01f6b2b | 2015-01-12 12:42:58 -0800 | [diff] [blame] | 179 | void (*process_message)(struct usb_line6 *); |
Takashi Iwai | f66fd99 | 2015-01-25 18:22:58 +0100 | [diff] [blame] | 180 | void (*disconnect)(struct usb_line6 *line6); |
Takashi Iwai | 0b074ab | 2019-05-28 08:39:44 +0200 | [diff] [blame] | 181 | void (*startup)(struct usb_line6 *line6); |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 182 | }; |
| 183 | |
Greg Kroah-Hartman | a49e483 | 2009-02-27 21:09:55 -0800 | [diff] [blame] | 184 | extern char *line6_alloc_sysex_buffer(struct usb_line6 *line6, int code1, |
| 185 | int code2, int size); |
Chris Rorvick | 25a0707 | 2015-02-11 06:03:31 -0600 | [diff] [blame] | 186 | extern int line6_read_data(struct usb_line6 *line6, unsigned address, |
| 187 | void *data, unsigned datalen); |
Greg Kroah-Hartman | a49e483 | 2009-02-27 21:09:55 -0800 | [diff] [blame] | 188 | extern int line6_read_serial_number(struct usb_line6 *line6, |
Chris Rorvick | 12b0015 | 2015-02-10 23:03:16 -0600 | [diff] [blame] | 189 | u32 *serial_number); |
Vasily Khoruzhick | 0afff87 | 2020-07-13 08:28:52 -0700 | [diff] [blame] | 190 | extern int line6_send_raw_message(struct usb_line6 *line6, |
| 191 | const char *buffer, int size); |
Greg Kroah-Hartman | a49e483 | 2009-02-27 21:09:55 -0800 | [diff] [blame] | 192 | extern int line6_send_raw_message_async(struct usb_line6 *line6, |
| 193 | const char *buffer, int size); |
| 194 | extern int line6_send_sysex_message(struct usb_line6 *line6, |
| 195 | const char *buffer, int size); |
Markus Grabner | 1027f47 | 2010-08-12 01:35:30 +0200 | [diff] [blame] | 196 | extern int line6_version_request_async(struct usb_line6 *line6); |
Chris Rorvick | 25a0707 | 2015-02-11 06:03:31 -0600 | [diff] [blame] | 197 | extern int line6_write_data(struct usb_line6 *line6, unsigned address, |
| 198 | void *data, unsigned datalen); |
Markus Grabner | 1027f47 | 2010-08-12 01:35:30 +0200 | [diff] [blame] | 199 | |
Takashi Iwai | ccddbe4 | 2015-01-15 08:22:31 +0100 | [diff] [blame] | 200 | int line6_probe(struct usb_interface *interface, |
Takashi Iwai | f66fd99 | 2015-01-25 18:22:58 +0100 | [diff] [blame] | 201 | const struct usb_device_id *id, |
Chris Rorvick | 12865ca | 2015-02-07 10:43:19 -0600 | [diff] [blame] | 202 | const char *driver_name, |
Takashi Iwai | ccddbe4 | 2015-01-15 08:22:31 +0100 | [diff] [blame] | 203 | const struct line6_properties *properties, |
Takashi Iwai | aca514b | 2015-01-25 18:36:29 +0100 | [diff] [blame] | 204 | int (*private_init)(struct usb_line6 *, const struct usb_device_id *id), |
| 205 | size_t data_size); |
Takashi Iwai | f66fd99 | 2015-01-25 18:22:58 +0100 | [diff] [blame] | 206 | |
Takashi Iwai | ccddbe4 | 2015-01-15 08:22:31 +0100 | [diff] [blame] | 207 | void line6_disconnect(struct usb_interface *interface); |
| 208 | |
| 209 | #ifdef CONFIG_PM |
| 210 | int line6_suspend(struct usb_interface *interface, pm_message_t message); |
| 211 | int line6_resume(struct usb_interface *interface); |
| 212 | #endif |
| 213 | |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 214 | #endif |