Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 1 | /* |
Chris Rorvick | c078a4a | 2015-01-20 02:20:50 -0600 | [diff] [blame] | 2 | * Line 6 Linux USB driver |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 3 | * |
Markus Grabner | 1027f47 | 2010-08-12 01:35:30 +0200 | [diff] [blame] | 4 | * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at) |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation, version 2. |
| 9 | * |
| 10 | */ |
| 11 | |
| 12 | #ifndef DRIVER_H |
| 13 | #define DRIVER_H |
| 14 | |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 15 | #include <linux/spinlock.h> |
| 16 | #include <linux/usb.h> |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 17 | #include <sound/core.h> |
| 18 | |
| 19 | #include "midi.h" |
| 20 | |
Andrej Krutak | 79faa2b | 2016-09-18 20:59:22 +0200 | [diff] [blame] | 21 | /* USB 1.1 speed configuration */ |
| 22 | #define USB_LOW_INTERVALS_PER_SECOND 1000 |
| 23 | #define USB_LOW_ISO_BUFFERS 2 |
| 24 | |
| 25 | /* USB 2.0+ speed configuration */ |
| 26 | #define USB_HIGH_INTERVALS_PER_SECOND 8000 |
| 27 | #define USB_HIGH_ISO_BUFFERS 16 |
Takashi Iwai | 129b3be | 2015-01-28 14:50:08 +0100 | [diff] [blame] | 28 | |
| 29 | /* Fallback USB interval and max packet size values */ |
| 30 | #define LINE6_FALLBACK_INTERVAL 10 |
| 31 | #define LINE6_FALLBACK_MAXPACKETSIZE 16 |
| 32 | |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 33 | #define LINE6_TIMEOUT 1 |
Andrej Krutak | 97d78ac | 2016-09-18 20:59:24 +0200 | [diff] [blame] | 34 | #define LINE6_BUFSIZE_LISTEN 64 |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 35 | #define LINE6_MESSAGE_MAXLEN 256 |
| 36 | |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 37 | /* |
Chris Rorvick | c6fffce | 2015-01-20 02:20:49 -0600 | [diff] [blame] | 38 | Line 6 MIDI control commands |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 39 | */ |
| 40 | #define LINE6_PARAM_CHANGE 0xb0 |
| 41 | #define LINE6_PROGRAM_CHANGE 0xc0 |
| 42 | #define LINE6_SYSEX_BEGIN 0xf0 |
| 43 | #define LINE6_SYSEX_END 0xf7 |
| 44 | #define LINE6_RESET 0xff |
| 45 | |
| 46 | /* |
| 47 | MIDI channel for messages initiated by the host |
| 48 | (and eventually echoed back by the device) |
| 49 | */ |
| 50 | #define LINE6_CHANNEL_HOST 0x00 |
| 51 | |
| 52 | /* |
| 53 | MIDI channel for messages initiated by the device |
| 54 | */ |
| 55 | #define LINE6_CHANNEL_DEVICE 0x02 |
| 56 | |
Markus Grabner | e1a164d | 2010-08-23 01:08:25 +0200 | [diff] [blame] | 57 | #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] | 58 | |
| 59 | #define LINE6_CHANNEL_MASK 0x0f |
| 60 | |
Greg Kroah-Hartman | 027360c | 2010-09-21 16:58:00 -0700 | [diff] [blame] | 61 | #define CHECK_STARTUP_PROGRESS(x, n) \ |
| 62 | do { \ |
| 63 | if ((x) >= (n)) \ |
| 64 | return; \ |
| 65 | x = (n); \ |
| 66 | } while (0) |
Markus Grabner | 1027f47 | 2010-08-12 01:35:30 +0200 | [diff] [blame] | 67 | |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 68 | extern const unsigned char line6_midi_id[3]; |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 69 | |
| 70 | static const int SYSEX_DATA_OFS = sizeof(line6_midi_id) + 3; |
| 71 | static const int SYSEX_EXTRA_SIZE = sizeof(line6_midi_id) + 4; |
| 72 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 73 | /* |
Chris Rorvick | c6fffce | 2015-01-20 02:20:49 -0600 | [diff] [blame] | 74 | Common properties of Line 6 devices. |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 75 | */ |
| 76 | struct line6_properties { |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 77 | /* Card id string (maximum 16 characters). |
| 78 | * This can be used to address the device in ALSA programs as |
| 79 | * "default:CARD=<id>" |
| 80 | */ |
Markus Grabner | 1027f47 | 2010-08-12 01:35:30 +0200 | [diff] [blame] | 81 | const char *id; |
| 82 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 83 | /* Card short name (maximum 32 characters) */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 84 | const char *name; |
Markus Grabner | 1027f47 | 2010-08-12 01:35:30 +0200 | [diff] [blame] | 85 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 86 | /* Bit vector defining this device's capabilities in line6usb driver */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 87 | int capabilities; |
Chris Rorvick | 7b9584f | 2015-01-12 12:42:52 -0800 | [diff] [blame] | 88 | |
| 89 | int altsetting; |
Chris Rorvick | 9e165be | 2015-01-12 12:42:53 -0800 | [diff] [blame] | 90 | |
| 91 | unsigned ep_ctrl_r; |
| 92 | unsigned ep_ctrl_w; |
Chris Rorvick | 16d603d | 2015-01-12 12:42:55 -0800 | [diff] [blame] | 93 | unsigned ep_audio_r; |
| 94 | unsigned 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, |
Takashi Iwai | 129b3be | 2015-01-28 14:50:08 +0100 | [diff] [blame] | 109 | }; |
| 110 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 111 | /* |
Chris Rorvick | c6fffce | 2015-01-20 02:20:49 -0600 | [diff] [blame] | 112 | Common data shared by all Line 6 devices. |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 113 | Corresponds to a pair of USB endpoints. |
| 114 | */ |
| 115 | struct usb_line6 { |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 116 | /* USB device */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 117 | struct usb_device *usbdev; |
| 118 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 119 | /* Properties */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 120 | const struct line6_properties *properties; |
| 121 | |
Andrej Krutak | 79faa2b | 2016-09-18 20:59:22 +0200 | [diff] [blame] | 122 | /* Interval for data USB packets */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 123 | int interval; |
Andrej Krutak | 79faa2b | 2016-09-18 20:59:22 +0200 | [diff] [blame] | 124 | /* ...for isochronous transfers framing */ |
| 125 | int intervals_per_second; |
| 126 | |
Andrej Krutak | b2233d9 | 2016-09-18 20:59:21 +0200 | [diff] [blame] | 127 | /* Number of isochronous URBs used for frame transfers */ |
| 128 | int iso_buffers; |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 129 | |
Andrej Krutak | 79faa2b | 2016-09-18 20:59:22 +0200 | [diff] [blame] | 130 | /* Maximum size of data USB packet */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 131 | int max_packet_size; |
| 132 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 133 | /* Device representing the USB interface */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 134 | struct device *ifcdev; |
| 135 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 136 | /* Line 6 sound card data structure. |
| 137 | * Each device has at least MIDI or PCM. |
| 138 | */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 139 | struct snd_card *card; |
| 140 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 141 | /* Line 6 PCM device data structure */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 142 | struct snd_line6_pcm *line6pcm; |
| 143 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 144 | /* Line 6 MIDI device data structure */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 145 | struct snd_line6_midi *line6midi; |
| 146 | |
Andrej Krutak | 174e1fc | 2016-09-18 20:59:26 +0200 | [diff] [blame^] | 147 | /* URB for listening to POD data endpoint */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 148 | struct urb *urb_listen; |
| 149 | |
Andrej Krutak | 174e1fc | 2016-09-18 20:59:26 +0200 | [diff] [blame^] | 150 | /* Buffer for listening to POD data endpoint */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 151 | unsigned char *buffer_listen; |
| 152 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 153 | /* Buffer for message to be processed */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 154 | unsigned char *buffer_message; |
| 155 | |
Takashi Iwai | cddbd4f | 2015-01-28 14:43:11 +0100 | [diff] [blame] | 156 | /* Length of message to be processed */ |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 157 | int message_length; |
Chris Rorvick | 01f6b2b | 2015-01-12 12:42:58 -0800 | [diff] [blame] | 158 | |
| 159 | void (*process_message)(struct usb_line6 *); |
Takashi Iwai | f66fd99 | 2015-01-25 18:22:58 +0100 | [diff] [blame] | 160 | void (*disconnect)(struct usb_line6 *line6); |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 161 | }; |
| 162 | |
Greg Kroah-Hartman | a49e483 | 2009-02-27 21:09:55 -0800 | [diff] [blame] | 163 | extern char *line6_alloc_sysex_buffer(struct usb_line6 *line6, int code1, |
| 164 | int code2, int size); |
Chris Rorvick | 25a0707 | 2015-02-11 06:03:31 -0600 | [diff] [blame] | 165 | extern int line6_read_data(struct usb_line6 *line6, unsigned address, |
| 166 | void *data, unsigned datalen); |
Greg Kroah-Hartman | a49e483 | 2009-02-27 21:09:55 -0800 | [diff] [blame] | 167 | extern int line6_read_serial_number(struct usb_line6 *line6, |
Chris Rorvick | 12b0015 | 2015-02-10 23:03:16 -0600 | [diff] [blame] | 168 | u32 *serial_number); |
Greg Kroah-Hartman | a49e483 | 2009-02-27 21:09:55 -0800 | [diff] [blame] | 169 | extern int line6_send_raw_message_async(struct usb_line6 *line6, |
| 170 | const char *buffer, int size); |
| 171 | extern int line6_send_sysex_message(struct usb_line6 *line6, |
| 172 | const char *buffer, int size); |
| 173 | extern ssize_t line6_set_raw(struct device *dev, struct device_attribute *attr, |
| 174 | const char *buf, size_t count); |
Nicholas Mc Guire | 6ccd93b | 2015-02-03 02:38:56 -0500 | [diff] [blame] | 175 | extern void line6_start_timer(struct timer_list *timer, unsigned long msecs, |
Monam Agarwal | 56733e9 | 2014-02-27 21:06:58 +0530 | [diff] [blame] | 176 | void (*function)(unsigned long), |
Markus Grabner | e1a164d | 2010-08-23 01:08:25 +0200 | [diff] [blame] | 177 | unsigned long data); |
Markus Grabner | 1027f47 | 2010-08-12 01:35:30 +0200 | [diff] [blame] | 178 | extern int line6_version_request_async(struct usb_line6 *line6); |
Chris Rorvick | 25a0707 | 2015-02-11 06:03:31 -0600 | [diff] [blame] | 179 | extern int line6_write_data(struct usb_line6 *line6, unsigned address, |
| 180 | void *data, unsigned datalen); |
Markus Grabner | 1027f47 | 2010-08-12 01:35:30 +0200 | [diff] [blame] | 181 | |
Takashi Iwai | ccddbe4 | 2015-01-15 08:22:31 +0100 | [diff] [blame] | 182 | int line6_probe(struct usb_interface *interface, |
Takashi Iwai | f66fd99 | 2015-01-25 18:22:58 +0100 | [diff] [blame] | 183 | const struct usb_device_id *id, |
Chris Rorvick | 12865ca | 2015-02-07 10:43:19 -0600 | [diff] [blame] | 184 | const char *driver_name, |
Takashi Iwai | ccddbe4 | 2015-01-15 08:22:31 +0100 | [diff] [blame] | 185 | const struct line6_properties *properties, |
Takashi Iwai | aca514b | 2015-01-25 18:36:29 +0100 | [diff] [blame] | 186 | int (*private_init)(struct usb_line6 *, const struct usb_device_id *id), |
| 187 | size_t data_size); |
Takashi Iwai | f66fd99 | 2015-01-25 18:22:58 +0100 | [diff] [blame] | 188 | |
Takashi Iwai | ccddbe4 | 2015-01-15 08:22:31 +0100 | [diff] [blame] | 189 | void line6_disconnect(struct usb_interface *interface); |
| 190 | |
| 191 | #ifdef CONFIG_PM |
| 192 | int line6_suspend(struct usb_interface *interface, pm_message_t message); |
| 193 | int line6_resume(struct usb_interface *interface); |
| 194 | #endif |
| 195 | |
Markus Grabner | 705ecec | 2009-02-27 19:43:04 -0800 | [diff] [blame] | 196 | #endif |